From e53c84d30c9c41003ad190be7eb70f0bc524e382 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 --- 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 8e40dc4a9..3f60cb6cc 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