diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-07 11:01:34 +0000 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-07 11:01:34 +0000 |
| commit | 10d32032e906fbb3832da13f00d936b9785491e1 (patch) | |
| tree | 7daa7bdb32ceea6e12693bbd1e2e10bfa8adc249 | |
| parent | 9e62e1e097910080ca1d19a579ec33f1e56aa200 (diff) | |
| parent | 64d1e1546a0e6b319c398f33710e8f879c5933e7 (diff) | |
| download | monzero-gui-10d32032e906fbb3832da13f00d936b9785491e1.tar.gz monzero-gui-10d32032e906fbb3832da13f00d936b9785491e1.tar.xz monzero-gui-10d32032e906fbb3832da13f00d936b9785491e1.zip | |
Merge pull request #534
64d1e15 add top margin when custom decorations are used (Jaquee)
| -rw-r--r-- | LeftPanel.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index 4b4a7fac..7042ee58 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -76,7 +76,7 @@ Rectangle { anchors.left: parent.left anchors.right: parent.right anchors.top: parent.top - anchors.topMargin: 36 + anchors.topMargin: (persistentSettings.customDecorations)? 66 : 36 height: logo.implicitHeight Image { |
