summary refs log tree commit diff
path: root/resources/qml/Root.qml
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/Root.qml')
-rw-r--r--resources/qml/Root.qml15
1 files changed, 14 insertions, 1 deletions
diff --git a/resources/qml/Root.qml b/resources/qml/Root.qml

index c85b641a..82025057 100644 --- a/resources/qml/Root.qml +++ b/resources/qml/Root.qml
@@ -144,6 +144,14 @@ Page { } + Component { + id: userSettingsPage + + UserSettingsPage { + } + + } + Shortcut { sequence: "Ctrl+K" onActivated: { @@ -353,8 +361,13 @@ Page { target: UIA } - ChatPage { + StackView { + id: mainWindow + anchors.fill: parent + initialItem: ChatPage { + //anchors.fill: parent + } } }