sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 48c84cd1f8175223ce5a744d6508a9f4bdbe3867
parent 2d5fea1e8004f46ecc8c81a3c6a06db6b6f4ff93
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 22 Apr 2018 11:06:51 +0200

Merge pull request #1839 from emersion/rename-surface-subsurfaces

Update for wlroots#885
Diffstat:
Msway/tree/view.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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, static void view_init_subsurfaces(struct sway_view *view, struct wlr_surface *surface) { struct wlr_subsurface *subsurface; - wl_list_for_each(subsurface, &surface->subsurface_list, parent_link) { + wl_list_for_each(subsurface, &surface->subsurfaces, parent_link) { view_subsurface_create(view, subsurface); } }