diff options
-rw-r--r-- | mobile-widgets/qml/main.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 751118928..1f9f167c8 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -271,7 +271,7 @@ Kirigami.ApplicationWindow { name: ":/go-previous-symbolic" } text: qsTr("Back") - onTriggered: globalDrawer.scrollViewItem.pop() + onTriggered: globalDrawer.pop() } Kirigami.Action { icon { @@ -380,7 +380,7 @@ if you have network connectivity and want to sync your data to cloud storage."), name: ":/go-previous-symbolic" } text: qsTr("Back") - onTriggered: globalDrawer.scrollViewItem.pop() + onTriggered: globalDrawer.pop() } Kirigami.Action { icon { @@ -453,7 +453,7 @@ if you have network connectivity and want to sync your data to cloud storage."), name: ":/go-previous-symbolic" } text: qsTr("Back") - onTriggered: globalDrawer.scrollViewItem.pop() + onTriggered: globalDrawer.pop() } Kirigami.Action { icon { @@ -511,7 +511,7 @@ if you have network connectivity and want to sync your data to cloud storage."), name: ":/go-previous-symbolic" } text: qsTr("Back") - onTriggered: globalDrawer.scrollViewItem.pop() + onTriggered: globalDrawer.pop() } Kirigami.Action { text: qsTr("App log") @@ -570,7 +570,7 @@ if you have network connectivity and want to sync your data to cloud storage."), name: ":/go-previous-symbolic" } text: qsTr("Back") - onTriggered: globalDrawer.scrollViewItem.pop() + onTriggered: globalDrawer.pop() } Kirigami.Action { text: qsTr("Setup") |