aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/view.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 978271c2..8a2a8178 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -465,6 +465,9 @@ static void view_subsurface_create(struct sway_view *view,
465static void view_init_subsurfaces(struct sway_view *view, 465static void view_init_subsurfaces(struct sway_view *view,
466 struct wlr_surface *surface); 466 struct wlr_surface *surface);
467 467
468static void view_child_init_subsurfaces(struct sway_view_child *view_child,
469 struct wlr_surface *surface);
470
468static void view_handle_surface_new_subsurface(struct wl_listener *listener, 471static void view_handle_surface_new_subsurface(struct wl_listener *listener,
469 void *data) { 472 void *data) {
470 struct sway_view *view = 473 struct sway_view *view =
@@ -1033,6 +1036,14 @@ static void view_init_subsurfaces(struct sway_view *view,
1033 } 1036 }
1034} 1037}
1035 1038
1039static void view_child_init_subsurfaces(struct sway_view_child *view_child,
1040 struct wlr_surface *surface) {
1041 struct wlr_subsurface *subsurface;
1042 wl_list_for_each(subsurface, &surface->subsurfaces, parent_link) {
1043 view_child_subsurface_create(view_child, subsurface);
1044 }
1045}
1046
1036static void view_child_handle_surface_map(struct wl_listener *listener, 1047static void view_child_handle_surface_map(struct wl_listener *listener,
1037 void *data) { 1048 void *data) {
1038 struct sway_view_child *child = 1049 struct sway_view_child *child =
@@ -1088,7 +1099,7 @@ void view_child_init(struct sway_view_child *child,
1088 wlr_surface_send_enter(child->surface, workspace->output->wlr_output); 1099 wlr_surface_send_enter(child->surface, workspace->output->wlr_output);
1089 } 1100 }
1090 1101
1091 view_init_subsurfaces(child->view, surface); 1102 view_child_init_subsurfaces(child, surface);
1092} 1103}
1093 1104
1094void view_child_destroy(struct sway_view_child *child) { 1105void view_child_destroy(struct sway_view_child *child) {