From 0bdbf1a752aca4b65a75052c9ea8318c64d1761b Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Sun, 22 Jan 2023 22:23:44 -0500 Subject: [PATCH] fix: update width and height when resizing buffer --- src/wayland/buffer.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wayland/buffer.rs b/src/wayland/buffer.rs index c6535a18..594b3824 100644 --- a/src/wayland/buffer.rs +++ b/src/wayland/buffer.rs @@ -131,6 +131,8 @@ impl WaylandBuffer { &self.qh, self.released.clone(), ); + self.width = width; + self.height = height; } }