Implement foreign toplevel close

This commit is contained in:
Consolatis 2021-12-23 12:24:24 +01:00 committed by ARDiDo
parent 7e57b7fcf5
commit 80f012602f
4 changed files with 26 additions and 2 deletions

View file

@ -16,6 +16,14 @@ view_set_activated(struct view *view, bool activated)
}
}
void
view_close(struct view *view)
{
if (view->impl->close) {
view->impl->close(view);
}
}
void
view_move_resize(struct view *view, struct wlr_box geo)
{