diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index bbc72f3ec..4422d5b07 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -26,6 +26,14 @@ MobileComponents.ApplicationWindow { bannerImageSource: "dive.jpg" actions: [ + Action { + text: "Dive list" + onTriggered: { + for (var i=stackView.depth; i>1; i--) { + stackView.pop() + } + } + }, Action { text: "Cloud credentials" onTriggered: { @@ -38,14 +46,6 @@ MobileComponents.ApplicationWindow { stackView.push(prefsWindow) } }, - Action { - text: "Back to Divelist" - onTriggered: { - for (var i=stackView.depth; i>1; i--) { - stackView.pop() - } - } - }, MobileComponents.ActionGroup { text: "Manage dives" Action {