From 6457b9cefc7df82005fb01200b7a8c4d5415bda8 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Wed, 20 May 2020 23:19:03 +0300 Subject: Removal of windowmanager depedency Bug-AGL: SPEC-3447 Signed-off-by: Marius Vlad Change-Id: I7d7172459d38540fc7ddfac6887e68e73fd475fc --- app/qml/Main.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'app/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