diff options
author | Drew DeVault <[email protected]> | 2019-08-20 18:30:09 +0900 |
---|---|---|
committer | Simon Ser <[email protected]> | 2020-06-23 22:26:00 +0200 |
commit | 8d5e627bc98f376f84e7f5b0a7caed791351c577 (patch) | |
tree | 7d90c18521bfbcc59155a418efbd9b489617086e /sway/tree/container.c | |
parent | eeb90a7963cf2a846b6c9ce32f4796ac28a8629f (diff) |
Implement wlr-foreign-toplevel-management-v1
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c index 2fbd0d38..4cc42747 100644 --- a/sway/tree/container.c +++ b/sway/tree/container.c @@ -1168,6 +1168,10 @@ void container_discover_outputs(struct sway_container *con) { if (con->view) { view_for_each_surface(con->view, surface_send_enter_iterator, output->wlr_output); + if (con->view->foreign_toplevel) { + wlr_foreign_toplevel_handle_v1_output_enter( + con->view->foreign_toplevel, output->wlr_output); + } } list_add(con->outputs, output); } else if (!intersects && index != -1) { @@ -1176,6 +1180,10 @@ void container_discover_outputs(struct sway_container *con) { if (con->view) { view_for_each_surface(con->view, surface_send_leave_iterator, output->wlr_output); + if (con->view->foreign_toplevel) { + wlr_foreign_toplevel_handle_v1_output_leave( + con->view->foreign_toplevel, output->wlr_output); + } } list_del(con->outputs, index); } |