From 0478cea9b685232b83d57f773df5d2ad76e5b454 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Sat, 15 Jul 2023 18:34:13 +0200 Subject: [PATCH] fix: xdg_surface configure serial --- src/ifs/wl_surface/xdg_surface.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifs/wl_surface/xdg_surface.rs b/src/ifs/wl_surface/xdg_surface.rs index a24da62d..f5ada18e 100644 --- a/src/ifs/wl_surface/xdg_surface.rs +++ b/src/ifs/wl_surface/xdg_surface.rs @@ -347,7 +347,7 @@ impl SurfaceExt for XdgSurface { if let Some(ext) = self.ext.get() { ext.initial_configure()?; } - self.send_configure(rse); + self.send_configure(rse + 1); } // return CommitAction::AbortCommit; }