diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-22 10:54:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 10:54:15 +0200 |
commit | 12bf39a715b23b572e3ce213ee1aef8c32ebbc13 (patch) | |
tree | c372a2212a94bc282876c41649c8c18204ff0761 /rootston/output.c | |
parent | 704bc490a7d1ce581ba24ce833919036374293f9 (diff) | |
parent | 3bce5dfc9f288ffcfa045ae0a80bcc015d0966c5 (diff) |
Merge pull request #885 from emersion/remove-surface-subsurface
Remove wlr_surface::subsurface, add wlr_subcompositor
Diffstat (limited to 'rootston/output.c')
-rw-r--r-- | rootston/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/output.c b/rootston/output.c index 75bbd928..791b2819 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -318,7 +318,7 @@ static void render_view(struct roots_view *view, struct render_data *data) { } static bool has_standalone_surface(struct roots_view *view) { - if (!wl_list_empty(&view->wlr_surface->subsurface_list)) { + if (!wl_list_empty(&view->wlr_surface->subsurfaces)) { return false; } |