From 8f132ecded5705e55fc1ce6cfa4b59850c6b038e Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld <4404502+Drakulix@users.noreply.github.com> Date: Tue, 21 May 2024 19:01:11 +0200 Subject: [PATCH] xwm: Fix missing map_window_notify callback (#1436) --- src/xwayland/xwm/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/xwayland/xwm/mod.rs b/src/xwayland/xwm/mod.rs index 4012fd01055d..82375bf5235b 100644 --- a/src/xwayland/xwm/mod.rs +++ b/src/xwayland/xwm/mod.rs @@ -1449,6 +1449,8 @@ where AtomEnum::WINDOW, &[surface.window_id()], )?; + drop(_guard); + state.map_window_notify(xwm_id, surface); } } }