summaryrefslogtreecommitdiffstats
path: root/screenshot
diff options
context:
space:
mode:
authorKatja Marttila <katja.marttila@theqtcompany.com>2015-11-17 15:15:43 +0200
committerKatja Marttila <katja.marttila@theqtcompany.com>2015-11-26 10:40:22 +0000
commitda6b5d7b76224cdbced0d19e10a0f2d5282369e1 (patch)
tree80ac353de41d569c5780e8fde2fc93d6d6d95763 /screenshot
parente824e206f28eb20bcb6f1d9064990f5e927261f4 (diff)
Lighter theme for launcher
Launcher now has white background. Also layout is a bit different. White background causes that also demo images needs to be changed so that application image edges are smooth Change-Id: I09e0db44571625b875273074ab210a6427423c08 Reviewed-by: Kalle Viironen <kalle.viironen@theqtcompany.com>
Diffstat (limited to 'screenshot')
-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
+ }
+
}