summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-05-29 13:36:35 +0300
committerMarius Vlad <marius.vlad@collabora.com>2020-06-24 17:05:32 +0300
commit357e64291ddb7a7dcb644f307a86fa544807ca14 (patch)
treee52e61d2a903fae545d0d2f1002be58a970c8a79
parentfc41fa6da7f64262a7bbc4313b920762e1a31d15 (diff)
Launcher.qml: Use Window widths/heights instead of using the Screen
Bug-AGL: SPEC-3379 Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Change-Id: Ie6ef5238953ad28de2b53476a61a5c547a7ecc9c
-rw-r--r--launcher/qml/Launcher.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/qml/Launcher.qml b/launcher/qml/Launcher.qml
index 27b0d3d..347cdfb 100644
--- a/launcher/qml/Launcher.qml
+++ b/launcher/qml/Launcher.qml
@@ -30,8 +30,8 @@ ApplicationWindow {
Item {
id: container
anchors.centerIn: parent
- width: Screen.width
- height: Screen.height
+ width: Window.width
+ height: Window.height
//scale: screenInfo.scale_factor()
scale: 1