aboutsummaryrefslogtreecommitdiff
path: root/qml/main.qml
diff options
context:
space:
mode:
authorMiquel Lionel <lionel@les-miquelots.net>2021-11-04 05:38:46 +0100
committerMiquel Lionel <lionel@les-miquelots.net>2021-11-04 05:38:46 +0100
commitb759e3578047b96968c9b9a817389d374850de59 (patch)
treee50ee76e23f72c6c850ec6ff3bdd67fd827e0586 /qml/main.qml
parenta414601fcab42c883c1c5e391b76e91a92446f91 (diff)
downloadkdeltachat-b759e3578047b96968c9b9a817389d374850de59.tar.gz
kdeltachat-b759e3578047b96968c9b9a817389d374850de59.zip
Implement sending Videochat invitations
- layers popping function was hard to read in main.qml, add a line - add editable videochat instance setting
Diffstat (limited to 'qml/main.qml')
-rw-r--r--qml/main.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/qml/main.qml b/qml/main.qml
index f0798fd..34e94e8 100644
--- a/qml/main.qml
+++ b/qml/main.qml
@@ -162,7 +162,8 @@ Kirigami.ApplicationWindow {
tooltip: "Alt+Tab"
iconName: "system-users"
onTriggered: {
- while (pageStack.layers.depth > 1)pageStack.layers.pop()
+ while (pageStack.layers.depth > 1)
+ pageStack.layers.pop();
pageStack.layers.push(accountsPage);
}
},