aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlink2xt <link2xt@testrun.org>2021-05-18 21:32:07 +0300
committerlink2xt <link2xt@testrun.org>2021-05-18 21:32:07 +0300
commit837336dc93b66912d48a3b7a2e8c1991b4d3650f (patch)
treea6509048f5e5c5a19c7d63153eb8a9bf6bbd8bdd
parentf9ae1336ce46a47966f9462a3035c25cf1dd9bab (diff)
downloadkdeltachat-837336dc93b66912d48a3b7a2e8c1991b4d3650f.tar.gz
kdeltachat-837336dc93b66912d48a3b7a2e8c1991b4d3650f.zip
Log if Settings page can't be opened
-rw-r--r--qml/ChatlistPage.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/qml/ChatlistPage.qml b/qml/ChatlistPage.qml
index 71e4bbf..587de96 100644
--- a/qml/ChatlistPage.qml
+++ b/qml/ChatlistPage.qml
@@ -39,6 +39,8 @@ Kirigami.ScrollablePage {
if (settingsPageComponent.status == Component.Ready) {
let settingsPage = settingsPageComponent.createObject(chatlistPage, {context: chatlistPage.context})
pageStack.layers.push(settingsPage)
+ } else {
+ console.log("Can't open Settings page")
}
}
}