summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-05-29 14:01:23 +0300
committerMarius Vlad <marius.vlad@collabora.com>2020-05-29 15:56:44 +0300
commita44aaf342476a894aeb91edbc49b349aee93607b (patch)
tree6221a032357b4bbb1473e186ee2ff473b1efd4e2
parent2afae8c55678cf070ee1a41137be48019ea4872c (diff)
app/HVAC.qml: Use the Window width and height instead of using Screen
width and height Hard-code the width as the slider can't seem to resolve the correct width. Bug-AGL: SPEC-3379 Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
-rw-r--r--app/HVAC.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/HVAC.qml b/app/HVAC.qml
index 46c99ca..744ec8d 100644
--- a/app/HVAC.qml
+++ b/app/HVAC.qml
@@ -43,8 +43,10 @@ ApplicationWindow {
Item {
id: container
anchors.centerIn: parent
- width: Screen.width
- height: Screen.height
+ //width: Window.width
+ width: 1080
+ height: Window.height
+ //scale: Window.scale
scale: 1
ColumnLayout {