Skip to content

Commit

Permalink
fix build 2
Browse files Browse the repository at this point in the history
  • Loading branch information
igagis committed May 29, 2024
1 parent 3f49d1c commit 94741a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ruisapp/glue/linux/glue_wayland.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2124,7 +2124,7 @@ struct window_wrapper : public utki::destructable {

dims *= scale;

wl_egl_window_resize(this->egl_window.win, dims.x(), dims.y(), 0, 0);
wl_egl_window_resize(this->egl_window.win, int(dims.x()), int(dims.y()), 0, 0);

region_wrapper region(this->compositor);
region.add(r4::rectangle({0, 0}, dims.to<int32_t>()));
Expand Down

0 comments on commit 94741a1

Please sign in to comment.