keyboard.c: fix bug in 864746 (exit cycle-view with any modifier key)

Always call wlr_seat_keyboard_notify_modifiers() in
keyboard_modifiers_notify()
This commit is contained in:
Johan Malm 2021-09-20 22:42:03 +01:00
parent 119ef87373
commit 639660883b

View file

@ -44,7 +44,6 @@ keyboard_modifiers_notify(struct wl_listener *listener, void *data)
/* end cycle */ /* end cycle */
desktop_focus_view(&server->seat, server->cycle_view); desktop_focus_view(&server->seat, server->cycle_view);
server->cycle_view = NULL; server->cycle_view = NULL;
return;
} }
} }