mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-22 19:49:34 +00:00
SettingsLog: ScrollBar always visible (except Mac)
This commit is contained in:
parent
2946127ed7
commit
f6a66b6779
1 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
import QtQuick 2.9
|
||||
import QtQuick.Layouts 1.1
|
||||
import QtQuick.Controls 2.0
|
||||
import QtQuick.Controls 2.2
|
||||
|
||||
import "../../js/Utils.js" as Utils
|
||||
import "../../components" as MoneroComponents
|
||||
|
@ -206,6 +206,7 @@ Rectangle {
|
|||
|
||||
ScrollBar.vertical: ScrollBar {
|
||||
onActiveChanged: if (!active && !isMac) active = true
|
||||
policy: isMac ? ScrollBar.AsNeeded : ScrollBar.AlwaysOn
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue