From 04c7651e4fa3d1bd804f0b3114d07fb19dd4eeee Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 20 May 2020 23:19:03 +0300 Subject: Removal of windowmanager depedency Signed-off-by: Marius Vlad --- app/qml/Main.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'app/qml/Main.qml') 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 -- cgit 1.2.3-korg