diff options
author | Sebastian Kügler <sebas@kde.org> | 2015-12-08 02:33:11 +0100 |
---|---|---|
committer | Sebastian Kügler <sebas@kde.org> | 2015-12-08 04:55:56 +0100 |
commit | 36e3c5485ef0cfa8a9964876e01324a7fd7fe254 (patch) | |
tree | 3e5701aa544cc858868f87eefc2ed60d49240180 /qt-mobile/qml/DiveDetails.qml | |
parent | bfcc4aaf05477c0c748b7bd618ffc2345689a8aa (diff) | |
download | subsurface-36e3c5485ef0cfa8a9964876e01324a7fd7fe254.tar.gz |
implement new menu structure
This patch creates the following menu structure in the application menu
as discussed on irc:
Cloud credentials
Preferences
Manage dives
Download from computer
Add dive manually
Refresh dives
Upload to cloud
GPS
Add GPS tags to dives
Upload GPS data
Clear GPS cache
Advanced (hidden by default)
App log
Theme Information
"Save" moves out of the context menu, since it's a global thing (syncs
to server).
Signed-off-by: Sebastian Kügler <sebas@kde.org>
Diffstat (limited to 'qt-mobile/qml/DiveDetails.qml')
-rw-r--r-- | qt-mobile/qml/DiveDetails.qml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index 452b29974..dc2087a34 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -45,15 +45,6 @@ MobileComponents.Page { contextualActions: [ Action { - text: "Save" - enabled: diveDetailsWindow.state == "edit" - iconName: "document-save" - onTriggered: { - manager.saveChanges(); - contextDrawer.close(); - } - }, - Action { text: checked ? "View" : "Edit" checkable: true iconName: checked ? "view-readermode" : "document-edit" |