diff options
| author | selsta <selsta@sent.at> | 2019-07-22 22:27:34 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-07-22 22:28:46 +0200 |
| commit | d4a6826d131b02fbaaa9c12fb6d96cceca391909 (patch) | |
| tree | ff8061efed0695bc2ceccd631127b34100a3f1ee /wizard/WizardController.qml | |
| parent | a65222d05709941d83e06871f62d2e314f82034b (diff) | |
| download | monzero-gui-d4a6826d131b02fbaaa9c12fb6d96cceca391909.tar.gz monzero-gui-d4a6826d131b02fbaaa9c12fb6d96cceca391909.tar.xz monzero-gui-d4a6826d131b02fbaaa9c12fb6d96cceca391909.zip | |
WizardController: make scrollbar visible
Diffstat (limited to 'wizard/WizardController.qml')
| -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: { |
