aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-04-21 19:12:49 +0100
committerLibravatar emersion <contact@emersion.fr>2018-04-21 19:12:49 +0100
commita41057714f786bfe6a797cb8393b49e6870d5329 (patch)
treef8149f8e80bb627c053eab7887f9d068a4760298 /sway/tree/view.c
parentMerge pull request #1838 from emersion/use-wlr-renderer-init-wl-shm (diff)
downloadsway-a41057714f786bfe6a797cb8393b49e6870d5329.tar.gz
sway-a41057714f786bfe6a797cb8393b49e6870d5329.tar.zst
sway-a41057714f786bfe6a797cb8393b49e6870d5329.zip
Update for wlroots#885
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index b92c7099..92767188 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -327,7 +327,7 @@ static void view_child_handle_view_unmap(struct wl_listener *listener,
327static void view_init_subsurfaces(struct sway_view *view, 327static void view_init_subsurfaces(struct sway_view *view,
328 struct wlr_surface *surface) { 328 struct wlr_surface *surface) {
329 struct wlr_subsurface *subsurface; 329 struct wlr_subsurface *subsurface;
330 wl_list_for_each(subsurface, &surface->subsurface_list, parent_link) { 330 wl_list_for_each(subsurface, &surface->subsurfaces, parent_link) {
331 view_subsurface_create(view, subsurface); 331 view_subsurface_create(view, subsurface);
332 } 332 }
333} 333}