diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-15 13:48:38 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-24 17:48:58 +0300 |
commit | a1e14b1e532d76bf6ef4da7680b4f2807442cf96 (patch) | |
tree | 361119ba927b86fbed12955c5e00bae36a9abcac /app/Dashboard.qml | |
parent | 9fb6ae8424a2ba0255e186eec6c21cb23ce5beee (diff) |
Remove windowmanager depends
Bug-AGL: SPEC-3447
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I3e8f8897396616f269fb9a8b1c3ffafd027159a5
Diffstat (limited to 'app/Dashboard.qml')
-rw-r--r-- | app/Dashboard.qml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/Dashboard.qml b/app/Dashboard.qml index 7371667..a21bf6c 100644 --- a/app/Dashboard.qml +++ b/app/Dashboard.qml @@ -20,6 +20,8 @@ import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 import Translator 1.0 +import QtQuick.Window 2.13 + ApplicationWindow { id: root @@ -54,9 +56,10 @@ ApplicationWindow { Item { id: container anchors.centerIn: parent - width: 1080 - height: 1487 - scale: screenInfo.scale_factor() + width: Screen.width + height: Screen.height + //scale: screenInfo.scale_factor() + scale: 1 Label { id: speed |