diff options
| author | selsta <selsta@sent.at> | 2019-07-22 21:39:56 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-07-22 23:11:38 +0200 |
| commit | afe2b14430f4d659fedd25ff26aa3a2aa206d08b (patch) | |
| tree | 1e8fe9095cce6712c70e4a680bf4289f27678b62 /MiddlePanel.qml | |
| parent | a65222d05709941d83e06871f62d2e314f82034b (diff) | |
| download | monzero-gui-afe2b14430f4d659fedd25ff26aa3a2aa206d08b.tar.gz monzero-gui-afe2b14430f4d659fedd25ff26aa3a2aa206d08b.tar.xz monzero-gui-afe2b14430f4d659fedd25ff26aa3a2aa206d08b.zip | |
QML: fix more warnings
Diffstat (limited to 'MiddlePanel.qml')
| -rw-r--r-- | MiddlePanel.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml index 614aa6ed..a689731e 100644 --- a/MiddlePanel.qml +++ b/MiddlePanel.qml @@ -209,13 +209,13 @@ Rectangle { clip: true ScrollBar.vertical: ScrollBar { - parent: mainFlickable.parent + parent: root 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 ? 4 : 0 + anchors.bottomMargin: persistentSettings.customDecorations ? 15 : 10 } onFlickingChanged: { |
