From 90891f2a8a1735a6cf51c8e7a904a09886c2f210 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Fri, 29 May 2020 16:53:11 +0300 Subject: [PATCH] Mixer.qml: Use window's width and height instead of screens Bug-AGL: SPEC-3379 Signed-off-by: Marius Vlad --- app/Mixer.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Mixer.qml b/app/Mixer.qml index 80c3d77..b14ae68 100644 --- a/app/Mixer.qml +++ b/app/Mixer.qml @@ -30,8 +30,8 @@ ApplicationWindow { // ----- Setup id: root - width: Screen.width * roles.scale - height: Screen.height * roles.scale + width: Window.width * roles.scale + height: Window.height * roles.scale // ----- Childs Label { -- 2.16.6