diff --git a/src/app/qml/AccountMenu.qml b/src/app/qml/AccountMenu.qml index f865051f5..bedd1c0ed 100644 --- a/src/app/qml/AccountMenu.qml +++ b/src/app/qml/AccountMenu.qml @@ -36,6 +36,14 @@ KirigamiComponents.ConvergentContextMenu { } } + Kirigami.Action { + text: i18nc("@action:inmenu", "Switch Account") + icon.name: "system-switch-user" + shortcut: "Ctrl+U" + onTriggered: accountSwitchDialog.createObject(QQC2.Overlay.overlay, { + connection: root.connection + }).open(); + } QQC2.Action { text: i18n("Edit This Account") icon.name: "document-edit" diff --git a/src/rooms/UserInfo.qml b/src/rooms/UserInfo.qml index bc28c1b70..7bc5be493 100644 --- a/src/rooms/UserInfo.qml +++ b/src/rooms/UserInfo.qml @@ -104,14 +104,6 @@ RowLayout { Layout.preferredWidth: maximumContentWidth actions: [ - Kirigami.Action { - text: i18n("Switch Account") - icon.name: "system-switch-user" - shortcut: "Ctrl+U" - onTriggered: accountSwitchDialog.createObject(QQC2.Overlay.overlay, { - connection: root.connection - }).open(); - }, Kirigami.Action { text: i18n("Open Settings") icon.name: "settings-configure-symbolic"