From c51b3fb06f48657bcf66a92eca3de04066a9c8ef Mon Sep 17 00:00:00 2001 From: Vaxry Date: Tue, 30 Jan 2024 16:24:41 +0000 Subject: [PATCH] events: ignore sending mouse enter to focused if a constraint is active fixes #4186 --- src/events/Windows.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/events/Windows.cpp b/src/events/Windows.cpp index 48b6b3ac..cf5d0ab5 100644 --- a/src/events/Windows.cpp +++ b/src/events/Windows.cpp @@ -639,7 +639,8 @@ void Events::listener_mapWindow(void* owner, void* data) { g_pCompositor->setPreferredScaleForSurface(PWINDOW->m_pWLSurface.wlr(), PMONITOR->scale); g_pCompositor->setPreferredTransformForSurface(PWINDOW->m_pWLSurface.wlr(), PMONITOR->transform); - g_pInputManager->sendMotionEventsToFocused(); + if (!g_pCompositor->m_sSeat.mouse || !g_pCompositor->m_sSeat.mouse->constraintActive) + g_pInputManager->sendMotionEventsToFocused(); // fix some xwayland apps that don't behave nicely PWINDOW->m_vReportedSize = PWINDOW->m_vPendingReportedSize;