diff options
author | emersion <contact@emersion.fr> | 2018-04-21 18:40:25 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-04-21 18:40:25 +0100 |
commit | fa84b267e0fdc3bcdd43dc2d06b55ffad03059a3 (patch) | |
tree | 046f99d1ca723d9989c4187791b2d1c1204f7559 /rootston/output.c | |
parent | b116414bd5dbc15ec1df3734a4c99c1b5e304982 (diff) |
Remove wlr_surface::subsurface
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; } |