From 57b6dbcbde494b977a202ee612d9bc1dd82f0e3e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 13 Feb 2026 20:52:37 -0500 Subject: [PATCH] Don't open room-specific profile in account menu This should be your main profile, since visually and functionally this is "outside" the current room. Since the workaround is a bit estoeric, I added a comment so I remember why I did this later. --- src/app/qml/AccountMenu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qml/AccountMenu.qml b/src/app/qml/AccountMenu.qml index fc2ea1668..0488f47ea 100644 --- a/src/app/qml/AccountMenu.qml +++ b/src/app/qml/AccountMenu.qml @@ -26,7 +26,7 @@ KirigamiComponents.ConvergentContextMenu { Kirigami.Action { text: i18nc("@action:button", "Open Profile") icon.name: "im-user-symbolic" - onTriggered: RoomManager.resolveResource(root.connection.localUserId) + onTriggered: RoomManager.resolveResource(root.connection.localUserId, "qr") // Use "qr" action to make sure a room isn't passed, see RoomManager::visitUser } Kirigami.Action {