From 696ce3af5e5bccdfa517c806546883b4f5fa6377 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 8 Jun 2024 10:30:16 -0400 Subject: [PATCH] Fix QR code not showing when tapping the button under account settings (cherry picked from commit dc9a150929ed3177aba85dcf6e90d1eb882800b3) --- src/settings/AccountEditorPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/AccountEditorPage.qml b/src/settings/AccountEditorPage.qml index 0bbd3cb7c..78b59e92d 100644 --- a/src/settings/AccountEditorPage.qml +++ b/src/settings/AccountEditorPage.qml @@ -116,7 +116,7 @@ FormCard.FormCardPage { FormCard.FormButtonDelegate { text: i18nc("@action:button", "QR code for account") onClicked: { - let qrMax = Qt.createComponent('org.kde.neochat', 'QrCodeMaximizeComponent.qml').createObject(QQC2.ApplicationWindow.overlay, { + let qrMax = Qt.createComponent('org.kde.neochat', 'QrCodeMaximizeComponent').createObject(QQC2.ApplicationWindow.overlay, { text: "https://matrix.to/#/" + root.connection.localUser.id, title: root.connection.localUser.displayName, subtitle: root.connection.localUser.id,