add tab key

This commit is contained in:
Helium314 2024-05-26 14:43:37 +02:00
parent 7d1627ffc6
commit 6c2a3e8b5f
5 changed files with 9 additions and 2 deletions

View file

@ -773,6 +773,9 @@ public final class InputLogic {
case KeyCode.PAGE_DOWN:
sendDownUpKeyEvent(KeyEvent.KEYCODE_PAGE_DOWN);
break;
case KeyCode.TAB:
sendDownUpKeyEvent(KeyEvent.KEYCODE_TAB);
break;
case KeyCode.VOICE_INPUT:
// switching to shortcut IME, shift state, keyboard,... is handled by LatinIME,
// {@link KeyboardSwitcher#onEvent(Event)}, or {@link #onPressKey(int,int,boolean)} and {@link #onReleaseKey(int,boolean)}.