aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.qml b/main.qml
index 6d1fb40e..f7121241 100644
--- a/main.qml
+++ b/main.qml
@@ -1572,6 +1572,7 @@ ApplicationWindow {
property int minHeight: 400
MouseArea {
id: resizeArea
+ enabled: persistentSettings.customDecorations
hoverEnabled: true
anchors.right: parent.right
anchors.bottom: parent.bottom
@@ -1585,6 +1586,7 @@ ApplicationWindow {
Image {
anchors.centerIn: parent
+ visible: persistentSettings.customDecorations
source: parent.containsMouse || parent.pressed ? "images/resizeHovered.png" :
"images/resize.png"
}