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:
Louis Taylor 2018-11-26 22:35:20 +00:00 committed by Drew DeVault
parent ec20afd6d8
commit b1d820c492
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ static void keyboard_handle_key(
bool handled = false;
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++) {
handled = handle_keybinding(server, syms[i]);
}