You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-07 19:53:17 +00:00
Merge pull request #35440 from ericrybick/27104-input-buggy-linux
Remove buggy check if key was already released for accumulated input on linux
This commit is contained in:
@@ -2000,11 +2000,6 @@ void OS_X11::handle_key_event(XKeyEvent *p_event, bool p_echo) {
|
||||
if (last_is_pressed) {
|
||||
k->set_echo(true);
|
||||
}
|
||||
} else {
|
||||
//ignore
|
||||
if (!last_is_pressed) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
//printf("key: %x\n",k->get_scancode());
|
||||
|
||||
Reference in New Issue
Block a user