From ca4ff26e4581e0045f7f1899701d6335f0bce735 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Fri, 29 May 2020 16:52:13 +0300 Subject: Messaging.qml: Use window width and height instead of screens Bug-AGL: SPEC-3379, SPEC-3447 Signed-off-by: Marius Vlad Change-Id: Iea8f44f80ed7dae6ebd19b9cfdb6bba9d2cd705b --- app/Messaging.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Messaging.qml b/app/Messaging.qml index f59850a..48568c2 100644 --- a/app/Messaging.qml +++ b/app/Messaging.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 -- cgit 1.2.3-korg