summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-03 18:19:17 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-03 18:20:23 +0200
commit9d196fecae23a1f1d2f7922a180e3122547f9e4c (patch)
tree4f2575b28a3fce5382274d71fda71149630e6c3a
parenta51144b5a73fcbc95860db9d189915579879ac1e (diff)
downloadkube-9d196fecae23a1f1d2f7922a180e3122547f9e4c.tar.gz
kube-9d196fecae23a1f1d2f7922a180e3122547f9e4c.zip
Reduced opacity for dragged items
We need to see what we're dropping on, so it's in general not great that we have to look through the item at all, but like this we can at least see something.
-rw-r--r--framework/qml/MailListView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index f26041c2..90f3013b 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -179,7 +179,7 @@ FocusScope {
179 PropertyChanges {target: mouseArea; cursorShape: Qt.ClosedHandCursor} 179 PropertyChanges {target: mouseArea; cursorShape: Qt.ClosedHandCursor}
180 PropertyChanges {target: delegateRoot; x: x; y: y} 180 PropertyChanges {target: delegateRoot; x: x; y: y}
181 PropertyChanges {target: delegateRoot; parent: root} 181 PropertyChanges {target: delegateRoot; parent: root}
182 PropertyChanges {target: delegateRoot; opacity: 0.7} 182 PropertyChanges {target: delegateRoot; opacity: 0.2}
183 PropertyChanges {target: delegateRoot; highlighted: true} 183 PropertyChanges {target: delegateRoot; highlighted: true}
184 } 184 }
185 ] 185 ]