diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/qml/pages/AppStorePage.qml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/app/qml/pages/AppStorePage.qml b/app/qml/pages/AppStorePage.qml index 680ac50..defa3c5 100644 --- a/app/qml/pages/AppStorePage.qml +++ b/app/qml/pages/AppStorePage.qml @@ -24,7 +24,9 @@ Page { MenuItem { text: qsTr("Logout") onClicked: { - webview.logout(); + remorse.execute(qsTr("Logging out..."), function() { + webview.logout(); + }); } } } @@ -74,6 +76,10 @@ Page { } } + RemorsePopup { + id: remorse + } + PebbleStoreView { id: webview visible: !webview.downloadInProgress |
