Skip to content

Commit 4489517

Browse files
keyboard: replace duplicate period key (#36361)
switch between underscore and hypen instead of period
1 parent b1b7c50 commit 4489517

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

system/ui/widgets/keyboard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545
"numbers": [
4646
["1", "2", "3", "4", "5", "6", "7", "8", "9", "0"],
4747
["-", "/", ":", ";", "(", ")", "$", "&", "@", "\""],
48-
[SYMBOL_KEY, ".", ",", "?", "!", "`", BACKSPACE_KEY],
48+
[SYMBOL_KEY, "_", ",", "?", "!", "`", BACKSPACE_KEY],
4949
[ABC_KEY, SPACE_KEY, ".", ENTER_KEY],
5050
],
5151
"specials": [
5252
["[", "]", "{", "}", "#", "%", "^", "*", "+", "="],
5353
["_", "\\", "|", "~", "<", ">", "€", "£", "¥", "•"],
54-
[NUMERIC_KEY, ".", ",", "?", "!", "'", BACKSPACE_KEY],
54+
[NUMERIC_KEY, "-", ",", "?", "!", "'", BACKSPACE_KEY],
5555
[ABC_KEY, SPACE_KEY, ".", ENTER_KEY],
5656
],
5757
}

0 commit comments

Comments
 (0)