Fix incompatibilities with wlroots 0.13.0

This commit is contained in:
project-repo 2021-04-08 07:39:14 +02:00
commit b989fe50f0
6 changed files with 13 additions and 10 deletions

View file

@ -614,7 +614,7 @@ keybinding_cycle_views(struct cg_server *server, bool reverse) {
}
struct cg_view *it_view, *next_view = NULL;
if(reverse) {
next_view=view_get_prev_view(current_view);
next_view = view_get_prev_view(current_view);
} else {
struct wl_list *it;
it = current_view->link.next;