From a81205f444aec07bc2771de0e5031aa997b327a7 Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sun, 30 Nov 2025 09:47:14 -0500 Subject: [PATCH] Hyprland: attempt to fix potential keyboard issue. --- Modules/MainScreen/MainScreen.qml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Modules/MainScreen/MainScreen.qml b/Modules/MainScreen/MainScreen.qml index f3bac6f0..26fdbd47 100644 --- a/Modules/MainScreen/MainScreen.qml +++ b/Modules/MainScreen/MainScreen.qml @@ -80,12 +80,7 @@ PanelWindow { if (!root.isPanelOpen) { return WlrKeyboardFocus.None; } - if (CompositorService.isHyprland) { - // Exclusive focus on hyprland is too restrictive. - return WlrKeyboardFocus.OnDemand; - } else { - return PanelService.openedPanel.exclusiveKeyboard ? WlrKeyboardFocus.Exclusive : WlrKeyboardFocus.OnDemand; - } + return PanelService.openedPanel.exclusiveKeyboard ? WlrKeyboardFocus.Exclusive : WlrKeyboardFocus.OnDemand; } anchors {