aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-05-29 16:53:11 +0300
committerMarius Vlad <marius.vlad@collabora.com>2020-05-29 16:53:11 +0300
commit90891f2a8a1735a6cf51c8e7a904a09886c2f210 (patch)
tree662f91513ce82657b66369e650c60431ee0a22c7
parentb6638c65ad9af59abfb2a571e11be5a73dc662b8 (diff)
Mixer.qml: Use window's width and height instead of screens
Bug-AGL: SPEC-3379 Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-rw-r--r--app/Mixer.qml4
1 files 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 {