Remove debug printout

qemu-extended-key-event
Andri Yngvason 2020-07-10 15:38:58 +00:00
parent a148b6b3c4
commit 6383e45dad
1 changed files with 0 additions and 1 deletions

View File

@ -375,7 +375,6 @@ void on_keyboard_event(struct keyboard_collection* collection,
char name[256]; char name[256];
xkb_keysym_get_name(symbol, name, sizeof(name)); xkb_keysym_get_name(symbol, name, sizeof(name));
printf("Got %s %d\n", name, is_pressed ? 0 : 1);
SendKeyEvent(client, symbol, is_pressed); SendKeyEvent(client, symbol, is_pressed);
} }