aboutsummaryrefslogtreecommitdiff
path: root/components/StandardDialog.qml
diff options
context:
space:
mode:
authorthotbot <thotbot@protonmail.com>2019-12-21 15:02:06 +0000
committerthotbot <thotbot@protonmail.com>2019-12-21 18:33:36 +0000
commitded0a4da48922805c44fc2b5a06e2fe1304221bb (patch)
tree35430032256ab0515b9e7bcb2bd158e3275dbf55 /components/StandardDialog.qml
parent500c7ec82e1d0d8b0f1fb45e2649a7795d4e5a22 (diff)
downloadmonzero-gui-ded0a4da48922805c44fc2b5a06e2fe1304221bb.tar.gz
monzero-gui-ded0a4da48922805c44fc2b5a06e2fe1304221bb.tar.xz
monzero-gui-ded0a4da48922805c44fc2b5a06e2fe1304221bb.zip
Scrollbar: don't autohide if enabled (except on Mac)
Diffstat (limited to 'components/StandardDialog.qml')
-rw-r--r--components/StandardDialog.qml4
1 files changed, 3 insertions, 1 deletions
diff --git a/components/StandardDialog.qml b/components/StandardDialog.qml
index 2db02abb..38f0d369 100644
--- a/components/StandardDialog.qml
+++ b/components/StandardDialog.qml
@@ -124,7 +124,9 @@ Rectangle {
Flickable {
id: flickable
anchors.fill: parent
- ScrollBar.vertical: ScrollBar { }
+ ScrollBar.vertical: ScrollBar {
+ onActiveChanged: if (!active && !isMac) active = true
+ }
boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds
TextArea.flickable: TextArea {