diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-12-27 10:41:47 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-29 01:16:23 +0900 |
commit | a2246753d84a47587b44425f36a52d9005cd8f74 (patch) | |
tree | c7224fd63838c9e457b21be68cb5004859147239 /mobile-widgets/qml/main.qml | |
parent | ab93e0f55c66a244cd533039d808abf13cc3652b (diff) | |
download | subsurface-a2246753d84a47587b44425f36a52d9005cd8f74.tar.gz |
mobile UI: add menu item for cloud password reset
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 2aaf51f44..2e86fd10b 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -474,6 +474,16 @@ if you have network connectivity and want to sync your data to cloud storage."), } } } + Kirigami.Action{ + icon { + name: ":/icons/account_circle.svg" + } + text: qsTr("Reset forgotten Subsurface Cloud password") + onTriggered: { + Qt.openUrlExternally("https://cloud.subsurface-divelog.org/passwordreset") + globalDrawer.close() + } + } }, Kirigami.Action { icon { |