mirror of
https://github.com/labwc/labwc.git
synced 2026-02-16 22:05:27 -05:00
Implement foreign toplevel close
This commit is contained in:
parent
7e57b7fcf5
commit
80f012602f
4 changed files with 26 additions and 2 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue