diff options
-rw-r--r-- | qt-mobile/main.qml | 12 | ||||
-rw-r--r-- | qt-mobile/mobile-resources.qrc | 2 |
2 files changed, 14 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 + } } diff --git a/qt-mobile/mobile-resources.qrc b/qt-mobile/mobile-resources.qrc index 969f727d9..cb31d7ea1 100644 --- a/qt-mobile/mobile-resources.qrc +++ b/qt-mobile/mobile-resources.qrc @@ -6,5 +6,7 @@ <file>DiveList.qml</file> <file>DiveDetails.qml</file> <file>DownloadFromDiveComputer.qml</file> + <file>Log.qml</file> + <file>TopBar.qml</file> </qresource> </RCC> |