summary refs log tree commit diff
path: root/resources/qml/Root.qml
diff options
context:
space:
mode:
authorJoseph Donofry <joedonofry@gmail.com>2022-01-11 13:04:55 -0500
committerGitHub <noreply@github.com>2022-01-11 13:04:55 -0500
commitd2ee5d8d43bbab15737f3d0cc1eabb37934a6e7b (patch)
tree7068bedcc91e01772acf1fe153b6054f7c9f449e /resources/qml/Root.qml
parentTranslated using Weblate (Dutch) (diff)
parentAddress review comments (diff)
downloadnheko-d2ee5d8d43bbab15737f3d0cc1eabb37934a6e7b.tar.xz
Merge pull request #883 from Nheko-Reborn/qml-usersettings
Port usersettings to qml
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 + } } }