Changed current_position and previous_position to geometry and previous_geometry, to be more consistent with wlroots

This commit is contained in:
Keith Bowes 2022-12-06 22:19:20 -05:00
parent 5122dbf35f
commit 3319f82249
5 changed files with 50 additions and 50 deletions

View file

@ -48,8 +48,8 @@ struct wb_view {
struct wl_listener request_move;
struct wl_listener request_resize;
struct wlr_box current_position;
struct wlr_box previous_position;
struct wlr_box geometry;
struct wlr_box previous_geometry;
};
void output_frame_notify(struct wl_listener* listener, void *data);