From 4837b8e8a2b451bd1dffde00d292cb9d37b4e371 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Fri, 29 May 2020 16:57:07 +0300 Subject: main.qml: Use the windows width and height Signed-off-by: Marius Vlad --- app/main.qml | 4 ++-- 1 file 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 -- cgit 1.2.3-korg