view: fix impl->set_fullscreen() argument bug

This commit is contained in:
Johan Malm 2021-08-24 21:53:20 +01:00
parent 645a8e46a6
commit 7bfe350f25
3 changed files with 3 additions and 5 deletions

View file

@ -160,8 +160,7 @@ struct view_impl {
const char *(*get_string_prop)(struct view *view, const char *prop);
void (*map)(struct view *view);
void (*move)(struct view *view, double x, double y);
void (*set_fullscreen)(struct view *view, bool fullscreen,
struct wlr_output *wlr_output);
void (*set_fullscreen)(struct view *view, bool fullscreen);
void (*unmap)(struct view *view);
void (*maximize)(struct view *view, bool maximize);
};