From e95689055b264b9ba78fe64b98e5afae394126ee Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 9 Nov 2020 11:41:23 +0100 Subject: [PATCH] Fix wrong path to AccountsPage --- qml/main.qml | 2 +- res.qrc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/qml/main.qml b/qml/main.qml index 81f414dad..1b63cd88a 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -38,7 +38,7 @@ Kirigami.ApplicationWindow { Kirigami.Action { text: i18n("Accounts") iconName: "im-user" - onTriggered: pageStack.layers.push("qrc:/qml/AccountsPage.qml") + onTriggered: pageStack.layers.push("qrc:/imports/NeoChat/Page/AccountsPage.qml") enabled: pageStack.layers.currentItem.title !== i18n("Accounts") } ] diff --git a/res.qrc b/res.qrc index 295f6770c..048da7a74 100644 --- a/res.qrc +++ b/res.qrc @@ -8,6 +8,7 @@ imports/NeoChat/Page/LoadingPage.qml imports/NeoChat/Page/RoomListPage.qml imports/NeoChat/Page/RoomPage.qml + imports/NeoChat/Page/AccountsPage.qml imports/NeoChat/Component/qmldir imports/NeoChat/Component/ChatTextInput.qml imports/NeoChat/Component/AutoMouseArea.qml