From 4d4b44e011b85ac4c246c882276cad4ee291f6a9 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 17 Jan 2026 11:39:12 -0500 Subject: [PATCH] Fix Quick Switcher not being activatable by Enter/Return key (cherry picked from commit e53c84d30c9c41003ad190be7eb70f0bc524e382) --- src/app/qml/QuickSwitcher.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qml/QuickSwitcher.qml b/src/app/qml/QuickSwitcher.qml index c1bdf1e23..46cad1dd5 100644 --- a/src/app/qml/QuickSwitcher.qml +++ b/src/app/qml/QuickSwitcher.qml @@ -22,7 +22,7 @@ Kirigami.SearchDialog { } onAccepted: if (currentItem) { - (currentItem as QQC2.ItemDelegate).clicked(); + (root.currentItem as RoomDelegate).clicked(); } onTextChanged: RoomManager.sortFilterRoomListModel.filterText = text