Skip to content

Commit

Permalink
wpaperd: Do not apply transform to the buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
danyspin97 committed Feb 14, 2024
1 parent bc75253 commit 3ff3051
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions daemon/src/wpaperd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ impl CompositorHandler for Wpaperd {
surface: &wl_surface::WlSurface,

Check warning on line 126 in daemon/src/wpaperd.rs

View workflow job for this annotation

GitHub Actions / Check

unused variable: `surface`

Check warning on line 126 in daemon/src/wpaperd.rs

View workflow job for this annotation

GitHub Actions / Test Suite

unused variable: `surface`
new_transform: wl_output::Transform,

Check warning on line 127 in daemon/src/wpaperd.rs

View workflow job for this annotation

GitHub Actions / Check

unused variable: `new_transform`

Check warning on line 127 in daemon/src/wpaperd.rs

View workflow job for this annotation

GitHub Actions / Test Suite

unused variable: `new_transform`
) {
self.surface_from_wl_surface(surface)
.unwrap()
.surface
.set_buffer_transform(new_transform);
// self.surface_from_wl_surface(surface)
// .unwrap()
// .surface
// .set_buffer_transform(new_transform);
}
}

Expand Down

0 comments on commit 3ff3051

Please sign in to comment.