summaryrefslogtreecommitdiffstats
path: root/qt-mobile/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r--qt-mobile/main.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml
index 33215f0df..b249a333a 100644
--- a/qt-mobile/main.qml
+++ b/qt-mobile/main.qml
@@ -52,6 +52,13 @@ ApplicationWindow {
manager.saveChanges();
}
}
+
+ MenuItem {
+ text: "View Log"
+ onTriggered: {
+ stackView.push(logWindow)
+ }
+ }
}
StackView {
@@ -169,4 +176,9 @@ ApplicationWindow {
id: downloadDivesWindow
visible: false
}
+
+ Log {
+ id: logWindow
+ visible: false
+ }
}