diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-25 06:39:09 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-07-25 06:39:09 +0200 |
commit | 96025e07891a341594ed9e93e1d2eec9c8bd7590 (patch) | |
tree | 311e835683fc55962daf63e2f93ec96890b34755 /framework/qml/MailListView.qml | |
parent | c545ad147bf0faba6192ac947dbb018aca0154e2 (diff) | |
download | kube-96025e07891a341594ed9e93e1d2eec9c8bd7590.tar.gz kube-96025e07891a341594ed9e93e1d2eec9c8bd7590.zip |
Use highlighted for drag
Diffstat (limited to 'framework/qml/MailListView.qml')
-rw-r--r-- | framework/qml/MailListView.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml index 550880ed..c4d8e307 100644 --- a/framework/qml/MailListView.qml +++ b/framework/qml/MailListView.qml | |||
@@ -125,6 +125,7 @@ FocusScope { | |||
125 | PropertyChanges {target: delegateRoot; x: x; y: y} | 125 | PropertyChanges {target: delegateRoot; x: x; y: y} |
126 | PropertyChanges {target: delegateRoot; parent: root} | 126 | PropertyChanges {target: delegateRoot; parent: root} |
127 | PropertyChanges {target: delegateRoot; opacity: 0.7} | 127 | PropertyChanges {target: delegateRoot; opacity: 0.7} |
128 | PropertyChanges {target: delegateRoot; highlighted: true} | ||
128 | } | 129 | } |
129 | ] | 130 | ] |
130 | 131 | ||
@@ -207,7 +208,7 @@ FocusScope { | |||
207 | margins: Kube.Units.smallSpacing | 208 | margins: Kube.Units.smallSpacing |
208 | } | 209 | } |
209 | 210 | ||
210 | visible: delegateRoot.hovered | 211 | visible: delegateRoot.hovered && !mouseArea.drag.active |
211 | 212 | ||
212 | spacing: Kube.Units.smallSpacing | 213 | spacing: Kube.Units.smallSpacing |
213 | opacity: 0.7 | 214 | opacity: 0.7 |