diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-04-15 07:28:41 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-15 08:16:59 -0700 |
commit | 026e90df3db1bc37fe845db32f02002d4c749fc3 (patch) | |
tree | 2d9dcb350570108823fab4b59fbf77255ef762ff /mobile-widgets/qml | |
parent | a47bcbb3e7133327da9e7000dfcc7ae40f42ef6e (diff) | |
download | subsurface-026e90df3db1bc37fe845db32f02002d4c749fc3.tar.gz |
QML UI: don't show a vertical scrollbar in dive list
With the folding trips it just looks confusing as it changes size.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index d332769e5..43b95c4f3 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -11,6 +11,7 @@ Kirigami.ScrollablePage { id: page objectName: "DiveList" title: qsTr("Dive list") + verticalScrollBarPolicy: Qt.ScrollBarAlwaysOff background: Rectangle { color: subsurfaceTheme.backgroundColor } |