From db1bf6180572563bb33e0d10cfc93c8f8c712a27 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Thu, 20 Jun 2024 18:14:36 +0200 Subject: [PATCH] GlobalMenu: remove shortcut for QuickSwitcher The shortcut needs to work when there is no Global Menu, so it's also in QuickSwitcher.qml. It can't be in both places, since that breaks it. So we remove it here. BUG: 488212 --- src/qml/GlobalMenu.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/qml/GlobalMenu.qml b/src/qml/GlobalMenu.qml index 09a613f5c..c1a8d620f 100644 --- a/src/qml/GlobalMenu.qml +++ b/src/qml/GlobalMenu.qml @@ -88,7 +88,6 @@ Labs.MenuBar { Labs.MenuItem { text: i18nc("menu item that opens a UI element called the 'Quick Switcher', which offers a fast keyboard-based interface for switching in between chats.", "Open Quick Switcher") - shortcut: "Ctrl+K" onTriggered: quickSwitcher.open() } }