fix(wayland): send pending configure on resize just in case

This commit is contained in:
Nova
2024-07-05 04:09:01 -04:00
parent 707b81871c
commit 7bedd2c27f

View File

@@ -548,7 +548,7 @@ impl Backend for XdgBackend {
toplevel.with_pending_state(|s| {
s.size = Some((size.x.max(16) as i32, size.y.max(16) as i32).into())
});
toplevel.send_configure();
toplevel.send_pending_configure();
}
fn set_toplevel_focused_visuals(&self, focused: bool) {
let Some(toplevel) = self.toplevel.lock().clone() else {