summaryrefslogtreecommitdiffstats
path: root/screenshot/Main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'screenshot/Main.qml')
-rw-r--r--screenshot/Main.qml10
1 files changed, 10 insertions, 0 deletions
diff --git a/screenshot/Main.qml b/screenshot/Main.qml
index 2c5b971..5849f17 100644
--- a/screenshot/Main.qml
+++ b/screenshot/Main.qml
@@ -161,10 +161,20 @@ Window
Rectangle {
id: blackOutLine
anchors.fill: parent
+ anchors.margins: 3
color: "transparent"
border.color: "black"
border.width: 3
visible: !controls.visible
}
+ Rectangle {
+ id: whiteOutLine
+ anchors.fill: parent
+ color: "transparent"
+ border.color: "white"
+ border.width: 3
+ visible: !controls.visible
+ }
+
}