From 0daf45a465862bd6612811c89ade1dc11f23bb0e Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 15 Apr 2024 17:48:26 +0200 Subject: [PATCH] Fix opening account editor --- src/settings/AccountsPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/AccountsPage.qml b/src/settings/AccountsPage.qml index 97235972c..7824d9ab0 100644 --- a/src/settings/AccountsPage.qml +++ b/src/settings/AccountsPage.qml @@ -28,7 +28,7 @@ FormCard.FormCardPage { id: accountDelegate required property NeoChatConnection connection Layout.fillWidth: true - onClicked: applicationWindow().pageStack.layers.push('AccountEditorPage', { + onClicked: applicationWindow().pageStack.layers.push(Qt.createComponent('org.kde.neochat.settings', 'AccountEditorPage'), { connection: accountDelegate.connection }, { title: i18n("Account editor")