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 84f7d38d..4df35ede 100644
--- a/main.qml
+++ b/main.qml
@@ -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"
}