From 21b1258b8d3a17a90b6916a540d6c1603b9ca902 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 13 Aug 2025 21:46:43 +0200 Subject: [PATCH] Only allow opening QuickSwitcher if there is an active connection --- 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 53090cdd5..c1bdf1e23 100644 --- a/src/app/qml/QuickSwitcher.qml +++ b/src/app/qml/QuickSwitcher.qml @@ -18,7 +18,7 @@ Kirigami.SearchDialog { Shortcut { sequence: "Ctrl+K" - onActivated: root.open() + onActivated: if (root.connection) root.open() } onAccepted: if (currentItem) {