diff options
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index f914cf205..e63cbdb7a 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -394,6 +394,14 @@ if you have network connectivity and want to sync your data to cloud storage."), } }, Kirigami.Action { + text: qsTr("Dive summary") + onTriggered: { + globalDrawer.close() + pageStack.push(diveSummaryWindow) + detailsWindow.endEditMode() + } + }, + Kirigami.Action { icon { name: ":/icons/ic_info_outline.svg" } @@ -815,6 +823,11 @@ if you have network connectivity and want to sync your data to cloud storage."), visible: false } + DiveSummary { + id: diveSummaryWindow + visible: false + } + ThemeTest { id: themetest visible: false |