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-06-24 18:13:13 +0300
commite0abfb8c769536cec9db9e78fff6dd93754dcd7a (patch)
tree7373a00f67babcd18a4a5e46f8046cc2b5eda6af
parent1cdeaaa97e3e40812e2b0c6f7ed0ad56b98fdd8c (diff)
Mixer.qml: Use window's width and height instead of screens
Bug-AGL: SPEC-3379, SPEC-3447 Signed-off-by: Marius Vlad <marius.vlad@collabora.com> Change-Id: I923d3d962d7ef2e8adf615c65a51c36747c3ecd1
-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 {