diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-25 09:48:33 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-01-25 09:48:33 +0100 |
commit | 04bdd5687d84c3b77ef1f87eba5d049a4b749e73 (patch) | |
tree | d92372718d48c851493f4f16d1858679719b11d9 /components | |
parent | a6536bbcf05efcdb1cacf1667e041038390b371d (diff) | |
download | kube-04bdd5687d84c3b77ef1f87eba5d049a4b749e73.tar.gz kube-04bdd5687d84c3b77ef1f87eba5d049a4b749e73.zip |
make mouspointer the drag hot spot
Diffstat (limited to 'components')
-rw-r--r-- | components/package/contents/ui/MailListView.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/package/contents/ui/MailListView.qml b/components/package/contents/ui/MailListView.qml index 6ec86aee..63d285e8 100644 --- a/components/package/contents/ui/MailListView.qml +++ b/components/package/contents/ui/MailListView.qml | |||
@@ -183,8 +183,8 @@ Item { | |||
183 | ] | 183 | ] |
184 | 184 | ||
185 | Drag.active: mouseArea.drag.active | 185 | Drag.active: mouseArea.drag.active |
186 | Drag.hotSpot.x: Kirigami.Units.gridUnit * 2 | 186 | Drag.hotSpot.x: mouseArea.mouseX |
187 | Drag.hotSpot.y: height / 2 | 187 | Drag.hotSpot.y: mouseArea.mouseY |
188 | 188 | ||
189 | MouseArea { | 189 | MouseArea { |
190 | id: mouseArea | 190 | id: mouseArea |