From f865ad7241a772a62b558866ab2dc87e99eb6383 Mon Sep 17 00:00:00 2001 From: Ilia Malanin Date: Sat, 7 Feb 2026 23:38:32 +0100 Subject: [PATCH] fix: Remove redundant configure in popup reposition_request --- src/wayland/handlers/xdg_shell/mod.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/wayland/handlers/xdg_shell/mod.rs b/src/wayland/handlers/xdg_shell/mod.rs index 43e6a46d..4e034850 100644 --- a/src/wayland/handlers/xdg_shell/mod.rs +++ b/src/wayland/handlers/xdg_shell/mod.rs @@ -164,12 +164,6 @@ impl XdgShellHandler for State { self.common.shell.read().unconstrain_popup(&surface); surface.send_repositioned(token); - if let Err(err) = surface.send_configure() { - warn!( - ?err, - "Client bug: Unable to re-configure repositioned popup.", - ); - } } fn move_request(&mut self, surface: ToplevelSurface, seat: WlSeat, serial: Serial) {