summaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/qml/main.qml')
-rw-r--r--qt-mobile/qml/main.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml
index b52fda057..2a4b8f432 100644
--- a/qt-mobile/qml/main.qml
+++ b/qt-mobile/qml/main.qml
@@ -70,6 +70,15 @@ ApplicationWindow {
}
MenuItem {
+ text: "Run location service"
+ checkable: true
+ checked: manager.locationServiceEnabled
+ onToggled: {
+ manager.setLocationServiceEnabled(checked);
+ }
+ }
+
+ MenuItem {
text: "View Log"
onTriggered: {
stackView.push(logWindow)