view: implement foreign toplevel fullscreen indicator

This commit is contained in:
Ronan Pigott 2020-07-30 15:52:45 -07:00 committed by Simon Ser
parent c5c632aaae
commit a01573016a
1 changed files with 4 additions and 0 deletions

View File

@ -978,6 +978,10 @@ static void set_fullscreen_iterator(struct sway_container *con, void *data) {
if (con->view->impl->set_fullscreen) {
bool *enable = data;
con->view->impl->set_fullscreen(con->view, *enable);
if (con->view->foreign_toplevel) {
wlr_foreign_toplevel_handle_v1_set_fullscreen(
con->view->foreign_toplevel, *enable);
}
}
}