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 @@ -393,6 +393,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