summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-24 06:24:09 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-25 10:17:57 -0800
commit140d552e6da0d275eacffa0e2719a8e0a9801b92 (patch)
tree39958e819469a93be9faeb26925e8f7c733d4e0b /mobile-widgets/qml
parent6570597f5bcb4c29eb3a63e5fae8d08fb4e76ea8 (diff)
downloadsubsurface-140d552e6da0d275eacffa0e2719a8e0a9801b92.tar.gz
mobile/profile: make the wait before dragging even shorter
Several users still found the wait too long - this is near instantaneous it just ignores brief taps. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r--mobile-widgets/qml/DiveDetailsView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml
index 0227c4785..196c89617 100644
--- a/mobile-widgets/qml/DiveDetailsView.qml
+++ b/mobile-widgets/qml/DiveDetailsView.qml
@@ -260,7 +260,7 @@ Item {
drag.target: qmlProfile
drag.axis: Drag.XAndYAxis
drag.smoothed: true
- pressAndHoldInterval: 150 // very short - feels about right
+ pressAndHoldInterval: 50 // very short - feels about right
// cursor/finger position as we start dragging
property real initialX
property real initialY