mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
QML UI: end edit mode when switching to different page
Fixes #997 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
bda0b01216
commit
8813f13bfd
1 changed files with 11 additions and 0 deletions
|
@ -20,6 +20,11 @@ MobileComponents.ApplicationWindow {
|
|||
visible: false
|
||||
opacity: 0
|
||||
|
||||
function endEditMode() {
|
||||
detailsWindow.state = "view"
|
||||
// somehow also should deal with the icon for the Action Button
|
||||
}
|
||||
|
||||
globalDrawer: MobileComponents.GlobalDrawer {
|
||||
title: "Subsurface"
|
||||
titleIcon: "qrc:/qml/subsurface-mobile-icon.png"
|
||||
|
@ -32,18 +37,21 @@ MobileComponents.ApplicationWindow {
|
|||
for (var i=stackView.depth; i>1; i--) {
|
||||
stackView.pop()
|
||||
}
|
||||
endEditMode()
|
||||
}
|
||||
},
|
||||
Action {
|
||||
text: "Cloud credentials"
|
||||
onTriggered: {
|
||||
stackView.push(cloudCredWindow)
|
||||
endEditMode()
|
||||
}
|
||||
},
|
||||
Action {
|
||||
text: "Preferences"
|
||||
onTriggered: {
|
||||
stackView.push(prefsWindow)
|
||||
endEditMode()
|
||||
}
|
||||
},
|
||||
MobileComponents.ActionGroup {
|
||||
|
@ -51,6 +59,7 @@ MobileComponents.ApplicationWindow {
|
|||
Action {
|
||||
text: "Download from computer"
|
||||
onTriggered: {
|
||||
endEditMode()
|
||||
stackView.push(downloadDivesWindow)
|
||||
}
|
||||
}
|
||||
|
@ -77,12 +86,14 @@ MobileComponents.ApplicationWindow {
|
|||
Action {
|
||||
text: "Refresh"
|
||||
onTriggered: {
|
||||
endEditMode()
|
||||
manager.loadDives();
|
||||
}
|
||||
}
|
||||
Action {
|
||||
text: "Upload to cloud"
|
||||
onTriggered: {
|
||||
endEditMode()
|
||||
manager.saveChanges();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue