Always send the keycode for the tab key

Don't write the tab character and always send the keycode, which is most
probably handled by applications.
This commit is contained in:
Jules Aguillon 2021-12-22 20:40:39 +01:00
parent 3e332dbf54
commit 86655d4959

View File

@ -221,8 +221,8 @@ class KeyValue
addEventKey("f8", "F8", KeyEvent.KEYCODE_F8);
addEventKey("f9", "F9", KeyEvent.KEYCODE_F9);
addEventKey("f10", "F10", KeyEvent.KEYCODE_F10);
addEventKey("tab", "", KeyEvent.KEYCODE_TAB);
addKey("tab", "", '\t', KeyEvent.KEYCODE_TAB, 0);
addKey("space", " ", ' ', KeyEvent.KEYCODE_SPACE, 0);
}
}