aboutsummaryrefslogtreecommitdiffstats
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-05-29 13:41:04 +0300
commit8df9e8be3a4790469ae40cfc56efe2dacd943add (patch)
tree32c4cc965d06c419c9d21f85439ce57d6b5ef74a
parent82bfc3a25532c9de903613d3eb71f8453fd01682 (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>
-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