main: disable resize bar if custom decorations are off

pull/2/head
selsta 5 years ago
parent bac833c1dd
commit c2c1260da0
Signed by untrusted user: selsta
GPG Key ID: 2EA0A99A8B07AE5E

@ -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"
}