blob: f8883a24f9b572cf51c8a81c2cb7c356610534ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/window/src/os/wayland/window.rs b/window/src/os/wayland/window.rs
index bd8411a3d..577e7680f 100644
--- a/window/src/os/wayland/window.rs
+++ b/window/src/os/wayland/window.rs
@@ -921,7 +921,7 @@ impl WaylandWindowInner {
) {
self.surface().attach(Some(buffer.wl_buffer()), 0, 0);
self.surface().set_buffer_scale(factor as i32);
- self.surface().commit();
+ // self.surface().commit();
self.surface_factor = factor;
}
|