mirror of
https://github.com/labwc/labwc.git
synced 2026-02-21 01:40:26 -05:00
keyboard: Fix handled check
Signed-off-by: Joshua Ashton <joshua@froggi.es>
This commit is contained in:
parent
ceb54d0236
commit
23b5eb294e
1 changed files with 1 additions and 1 deletions
|
|
@ -130,7 +130,7 @@ handle_compositor_keybindings(struct wl_listener *listener,
|
||||||
/* Handle compositor key bindings */
|
/* Handle compositor key bindings */
|
||||||
if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
if (event->state == WL_KEYBOARD_KEY_STATE_PRESSED) {
|
||||||
for (int i = 0; i < nsyms; i++) {
|
for (int i = 0; i < nsyms; i++) {
|
||||||
handled = handle_keybinding(server, modifiers, syms[i]);
|
handled |= handle_keybinding(server, modifiers, syms[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue