diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-23 11:27:34 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-23 11:27:34 -0500 |
| commit | b5cbb8b990c4ac4f9ab55d8919ecccfcbbf43dc8 (patch) | |
| tree | 744fd2c24e9cadc455f6c58fe983ccf601b9f942 | |
| parent | 8d17018019b998a3dccd1b2058625e3452686e28 (diff) | |
| parent | d4a6826d131b02fbaaa9c12fb6d96cceca391909 (diff) | |
| download | monzero-gui-b5cbb8b990c4ac4f9ab55d8919ecccfcbbf43dc8.tar.gz monzero-gui-b5cbb8b990c4ac4f9ab55d8919ecccfcbbf43dc8.tar.xz monzero-gui-b5cbb8b990c4ac4f9ab55d8919ecccfcbbf43dc8.zip | |
Merge pull request #2308
d4a6826 WizardController: make scrollbar visible (selsta)
| -rw-r--r-- | wizard/WizardController.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml index c209faf0..cf8984a5 100644 --- a/wizard/WizardController.qml +++ b/wizard/WizardController.qml @@ -273,12 +273,13 @@ Rectangle { clip: true ScrollBar.vertical: ScrollBar { - parent: wizardFlickable.parent + parent: wizardController anchors.left: parent.right - anchors.leftMargin: 3 + anchors.leftMargin: -14 // 10 margin + 4 scrollbar width anchors.top: parent.top - anchors.topMargin: 4 + anchors.topMargin: persistentSettings.customDecorations ? 60 : 10 anchors.bottom: parent.bottom + anchors.bottomMargin: persistentSettings.customDecorations ? 15 : 10 } onFlickingChanged: { |
