From 676e4c36c53c991f6950a0c51fbe7b41ee9a4db2 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Mon, 11 Jul 2022 22:51:20 +0200 Subject: [PATCH] fix focus on layers when constrained --- src/events/Layers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/events/Layers.cpp b/src/events/Layers.cpp index 9c4daeac..45f20870 100644 --- a/src/events/Layers.cpp +++ b/src/events/Layers.cpp @@ -118,7 +118,7 @@ void Events::listener_mapLayerSurface(void* owner, void* data) { g_pHyprRenderer->arrangeLayersForMonitor(PMONITOR->ID); - if (layersurface->layerSurface->current.keyboard_interactive) + if (layersurface->layerSurface->current.keyboard_interactive && (!g_pCompositor->m_sSeat.mouse || !g_pCompositor->m_sSeat.mouse->currentConstraint)) // don't focus if constrained g_pCompositor->focusSurface(layersurface->layerSurface->surface); // mouse enter always, keeb only when needed