diff options
Diffstat (limited to 'rootston/output.c')
-rw-r--r-- | rootston/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/output.c b/rootston/output.c index b551dcf4..3b08d7bf 100644 --- a/rootston/output.c +++ b/rootston/output.c @@ -186,8 +186,8 @@ static void output_frame_notify(struct wl_listener *listener, void *data) { wlr_output_make_current(wlr_output); wlr_renderer_begin(server->renderer, wlr_output); - for (size_t i = 0; i < desktop->views->length; ++i) { - struct roots_view *view = desktop->views->items[i]; + struct roots_view *view; + wl_list_for_each_reverse(view, &desktop->views, link) { render_view(view, desktop, wlr_output, &now); } |