diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-03-18 14:27:23 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-03-18 17:05:45 -0700 |
commit | dd1d90b5295b146e85ebc4199e3640b4c2e9f2c8 (patch) | |
tree | c03ac6191111cdc8d1bbd29be0677a7d81e913b1 /mobile-widgets | |
parent | a2bc3e02f8007d582676d349b570695a6af218f0 (diff) | |
download | subsurface-dd1d90b5295b146e85ebc4199e3640b4c2e9f2c8.tar.gz |
QML UI: don't clip
At least that's what the QML documentation recommends.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qml/DiveDetails.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveDetails.qml b/mobile-widgets/qml/DiveDetails.qml index 971cd7dc9..644aa715c 100644 --- a/mobile-widgets/qml/DiveDetails.qml +++ b/mobile-widgets/qml/DiveDetails.qml @@ -187,7 +187,7 @@ Kirigami.Page { maximumFlickVelocity: parent.width * 5 orientation: ListView.Horizontal focus: true - clip: true + clip: false snapMode: ListView.SnapOneItem onMovementEnded: { currentIndex = indexAt(contentX+1, 1); |