aboutsummaryrefslogtreecommitdiff
path: root/qml/main.qml
diff options
context:
space:
mode:
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);
}
},