Improve e-mail input field

Closes: #987
This commit is contained in:
eikek
2021-11-13 00:21:04 +01:00
parent ee2a4aaaf0
commit 0cb2bde160
4 changed files with 42 additions and 5 deletions

View File

@ -44,6 +44,8 @@ type KeyCode
| Right
| Enter
| Space
| Backspace
| Tab
| ESC
| Letter_C
| Letter_N
@ -91,6 +93,12 @@ intToKeyCode code =
32 ->
Just Space
8 ->
Just Backspace
9 ->
Just Tab
27 ->
Just ESC