Merge pull request #69 from pop-os/buffer-resize

fix: update width and height when resizing buffer
This commit is contained in:
Jeremy Soller 2023-01-23 06:39:18 -07:00 committed by GitHub
commit 31c06ac394
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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