forked from extern/Unexpected-Keyboard
Insert key
This commit is contained in:
parent
85eb9daa46
commit
3909976b85
@ -33,7 +33,7 @@
|
||||
<key key0="b" key2="/" key4=":" />
|
||||
<key key0="n" key2="§" key4="!" />
|
||||
<key key1="up" key2="right" key3="left" key4="down" />
|
||||
<key width="1.6" key0="backspace" key2="delete" />
|
||||
<key width="1.6" key0="backspace" key1="insert" key2="delete" />
|
||||
</row>
|
||||
<row>
|
||||
<key width="1.6" key0="ctrl" />
|
||||
|
@ -130,8 +130,9 @@ class KeyValue
|
||||
new KeyValue("page_down", "⇟", CHAR_NONE, KeyEvent.KEYCODE_PAGE_UP, 0);
|
||||
new KeyValue("home", "↖", CHAR_NONE, KeyEvent.KEYCODE_HOME, 0);
|
||||
new KeyValue("end", "↗", CHAR_NONE, KeyEvent.KEYCODE_MOVE_END, 0);
|
||||
new KeyValue("backspace", "⌫", CHAR_NONE, KeyEvent.KEYCODE_DEL, 0);
|
||||
new KeyValue("backspace", "⌫", CHAR_NONE, KeyEvent.KEYCODE_DEL, 0);
|
||||
new KeyValue("delete", "⌦", CHAR_NONE, KeyEvent.KEYCODE_FORWARD_DEL, 0);
|
||||
new KeyValue("insert", "Insert", CHAR_NONE, KeyEvent.KEYCODE_INSERT, 0);
|
||||
|
||||
new KeyValue("tab", "↹", '\t', EVENT_NONE, 0);
|
||||
new KeyValue("space", " ", ' ', EVENT_NONE, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user