diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-15 15:51:06 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-24 18:00:53 +0300 |
commit | f3ee268c94481fa1a60df5e8684a9ddf485f890c (patch) | |
tree | 520407c4bcad9839ae7ac52528b62eb7e12079cd /app/Messaging.qml | |
parent | ea5cae15deb6e8dbe1db8bfe389217cc26fbdfca (diff) |
app: Remove windowmanager deps
Bug-AGL: SPEC-3447
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: Ia608d28187b34690f93445c4bf0214a44cf1d5b2
Diffstat (limited to 'app/Messaging.qml')
-rw-r--r-- | app/Messaging.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/Messaging.qml b/app/Messaging.qml index 8494145..f59850a 100644 --- a/app/Messaging.qml +++ b/app/Messaging.qml @@ -19,6 +19,7 @@ import QtQuick 2.11 import QtQuick.Layouts 1.11 import QtQuick.Controls 2.4 import AGL.Demo.Controls 1.0 +import QtQuick.Window 2.13 ApplicationWindow { id: root @@ -29,9 +30,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 TabBar { id: bar |