diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-12-16 16:26:47 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2021-12-16 16:28:51 -0500 |
commit | 227a373c6cdc30793b8890b001c6802cffaefc99 (patch) | |
tree | c9b24b212c54c23fb703c6db8993ede2454cb3cc /app/navigation.qml | |
parent | fa3bd315abd8a710d7493e6ffb7b54c521632202 (diff) |
Update for app framework removal
Changes:
- Remove the autobuild scripts and config.xml used by the app
framework widget build.
- Update the qmake files to just build a "navigation" binary and
install it into /usr/bin by default. Also update the jtalk and
flite script installation.
- Remove the code in main.cpp that handled reading the WebSocket
command-line arguments and passing them to binding related
code.
Bug-AGL: SPEC-4182
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: If3eca7b12c3ac2605c32f9832220dc58406f7b4b
Diffstat (limited to 'app/navigation.qml')
-rw-r--r-- | app/navigation.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/navigation.qml b/app/navigation.qml index b98508f..d8f56a1 100644 --- a/app/navigation.qml +++ b/app/navigation.qml @@ -18,7 +18,6 @@ import QtQuick 2.6 import QtQuick.Layouts 1.1 import QtQuick.Controls 2.0 -import QtWebSockets 1.0 import QtLocation 5.9 import QtPositioning 5.6 import QtQuick.Window 2.11 @@ -26,6 +25,7 @@ import QtQuick.Window 2.11 ApplicationWindow { id: root visible: true + flags: Qt.FramelessWindowHint width: Window.width height: Window.height title: qsTr("navigation") |