diff options
| author | selsta <selsta@sent.at> | 2018-12-19 22:10:54 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2018-12-19 22:10:54 +0100 |
| commit | c2c1260da0f77c5c977fa23745c10dfa48bce467 (patch) | |
| tree | 7f0101f3dc8d680be679d4e76e07839e7d70646d | |
| parent | bac833c1dd95666e159406f290ad334decee2810 (diff) | |
| download | monzero-gui-c2c1260da0f77c5c977fa23745c10dfa48bce467.tar.gz monzero-gui-c2c1260da0f77c5c977fa23745c10dfa48bce467.tar.xz monzero-gui-c2c1260da0f77c5c977fa23745c10dfa48bce467.zip | |
main: disable resize bar if custom decorations are off
| -rw-r--r-- | main.qml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1564,6 +1564,7 @@ ApplicationWindow { property int minHeight: 400 MouseArea { id: resizeArea + enabled: persistentSettings.customDecorations hoverEnabled: true anchors.right: parent.right anchors.bottom: parent.bottom @@ -1577,6 +1578,7 @@ ApplicationWindow { Image { anchors.centerIn: parent + visible: persistentSettings.customDecorations source: parent.containsMouse || parent.pressed ? "images/resizeHovered.png" : "images/resize.png" } |
