diff options
author | Rick Walsh <rickmwalsh@gmail.com> | 2016-02-11 07:58:13 +1100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-02-10 15:16:18 -0800 |
commit | 70a122a63e3d10fc859b144dac596c29ec041a34 (patch) | |
tree | 47d9d4a11ee738c92a719e71151ba8bd6b32be67 /qt-mobile | |
parent | c41bdcfbe323c12f1803e47c3760628fe5121358 (diff) | |
download | subsurface-70a122a63e3d10fc859b144dac596c29ec041a34.tar.gz |
QML UI: make flicking between dives faster
Signed-off-by: Rick Walsh <rickmwalsh@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qml/DiveDetails.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index f0e2ff35e..69c30e4ae 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -124,7 +124,7 @@ MobileComponents.Page { model: diveModel currentIndex: -1 boundsBehavior: Flickable.StopAtBounds - maximumFlickVelocity: parent.width/4 + maximumFlickVelocity: parent.width * 5 orientation: ListView.Horizontal focus: true clip: true |