diff options
-rw-r--r-- | mobile-widgets/qml/main.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 5ff7983c1..44494f92a 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -436,6 +436,17 @@ if you have network connectivity and want to sync your data to cloud storage."), }, Kirigami.Action { icon { + name: ":/icons/ic_cloud_upload.svg" + } + text: qsTr("Export") + onTriggered: { + globalDrawer.close() + pageStack.push(exportWindow) + detailsWindow.endEditMode() + } + }, + Kirigami.Action { + icon { name: ":/icons/ic_help_outline.svg" } text: qsTr("Help") @@ -794,6 +805,11 @@ if you have network connectivity and want to sync your data to cloud storage."), visible: false } + Export { + id: exportWindow + visible: false + } + DiveDetails { id: detailsWindow visible: false |