diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-02-24 06:24:09 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-25 10:17:57 -0800 |
commit | 140d552e6da0d275eacffa0e2719a8e0a9801b92 (patch) | |
tree | 39958e819469a93be9faeb26925e8f7c733d4e0b /mobile-widgets/qml | |
parent | 6570597f5bcb4c29eb3a63e5fae8d08fb4e76ea8 (diff) | |
download | subsurface-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.qml | 2 |
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 |