diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2020-05-20 23:19:03 +0300 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2020-06-24 18:04:24 +0300 |
commit | 6457b9cefc7df82005fb01200b7a8c4d5415bda8 (patch) | |
tree | cf3323cee07b5a691831ad3714c0884823f20b7c /app/qml | |
parent | 97fbd6401ee0720d4efe4d4e9e2e02cfc6b0c4bd (diff) |
Removal of windowmanager depedency
Bug-AGL: SPEC-3447
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I7d7172459d38540fc7ddfac6887e68e73fd475fc
Diffstat (limited to 'app/qml')
-rw-r--r-- | app/qml/Main.qml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/qml/Main.qml b/app/qml/Main.qml index 7c83f37..188fa86 100644 --- a/app/qml/Main.qml +++ b/app/qml/Main.qml @@ -1,14 +1,16 @@ import QtQuick 2.0 import QtQuick.Controls 2.2 +import QtQuick.Window 2.11 + import "qrc:/qml" ApplicationWindow { id: tbtnavi title: "Turn By Turn Navigation Demo" - height: 720 - width: 640 + height: Window.height + width: Window.width visible: true property double vehicleSpeed: 0 |