mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
Correct WLR_BUTTON_PRESSED to WLR_KEY_PRESSED
This worked since it was the same value, but results in compile warnings.
This commit is contained in:
parent
ec20afd6d8
commit
b1d820c492
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ static void keyboard_handle_key(
|
||||||
|
|
||||||
bool handled = false;
|
bool handled = false;
|
||||||
uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
|
uint32_t modifiers = wlr_keyboard_get_modifiers(keyboard->device->keyboard);
|
||||||
if ((modifiers & WLR_MODIFIER_ALT) && event->state == WLR_BUTTON_PRESSED) {
|
if ((modifiers & WLR_MODIFIER_ALT) && event->state == WLR_KEY_PRESSED) {
|
||||||
for (int i = 0; i < nsyms; i++) {
|
for (int i = 0; i < nsyms; i++) {
|
||||||
handled = handle_keybinding(server, syms[i]);
|
handled = handle_keybinding(server, syms[i]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue