fix: update width and height when resizing buffer

This commit is contained in:
Ashley Wulber 2023-01-22 22:23:44 -05:00
parent 787958b2a6
commit 0bdbf1a752
No known key found for this signature in database
GPG key ID: 5216D4F46A90A820

View file

@ -131,6 +131,8 @@ impl WaylandBuffer {
&self.qh,
self.released.clone(),
);
self.width = width;
self.height = height;
}
}