diff options
| author | thotbot <thotbot@protonmail.com> | 2019-12-21 15:02:06 +0000 |
|---|---|---|
| committer | thotbot <thotbot@protonmail.com> | 2019-12-21 18:33:36 +0000 |
| commit | ded0a4da48922805c44fc2b5a06e2fe1304221bb (patch) | |
| tree | 35430032256ab0515b9e7bcb2bd158e3275dbf55 /pages/settings | |
| parent | 500c7ec82e1d0d8b0f1fb45e2649a7795d4e5a22 (diff) | |
| download | monzero-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 'pages/settings')
| -rw-r--r-- | pages/settings/SettingsLog.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pages/settings/SettingsLog.qml b/pages/settings/SettingsLog.qml index 05101376..0a596f6b 100644 --- a/pages/settings/SettingsLog.qml +++ b/pages/settings/SettingsLog.qml @@ -150,6 +150,7 @@ Rectangle { Flickable { id: flickable anchors.fill: parent + boundsBehavior: isMac ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds TextArea.flickable: TextArea { id : consoleArea @@ -203,7 +204,9 @@ Rectangle { } } - ScrollBar.vertical: ScrollBar {} + ScrollBar.vertical: ScrollBar { + onActiveChanged: if (!active && !isMac) active = true + } } } |
