aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-05-29 16:57:07 +0300
committerMarius Vlad <marius.vlad@collabora.com>2020-06-12 16:05:56 +0300
commit4837b8e8a2b451bd1dffde00d292cb9d37b4e371 (patch)
tree118439acf24c867e48e3dd18ecf3d711b27ffc55
parent64d6c8e707ba0c52b8fc473228ced1069c209a4f (diff)
main.qml: Use the windows width and heightsandbox/mvlad/agl-compositor
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-rw-r--r--app/main.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/main.qml b/app/main.qml
index e4a6b60..6f00c1d 100644
--- a/app/main.qml
+++ b/app/main.qml
@@ -65,8 +65,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