summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/MailListView.qml3
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