Skip to content

Commit 2c4a341

Browse files
authored
[rmkit] [keyboard] Fix lack of backspace in symbol keyboard (#233)
1 parent 213f6ab commit 2c4a341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rmkit/ui/keyboard.cpy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ namespace ui:
101101
self.set_layout(
102102
"1234567890",
103103
"-/:;() &@\"",
104-
" ,.?!' "
104+
" ,.?!'"
105105
)
106106

107107
void symbol_layout():
@@ -110,7 +110,7 @@ namespace ui:
110110
self.set_layout(
111111
"[]{}#%^*+=",
112112
"_\\|~<> $ ",
113-
" ,.?!' "
113+
" ,.?!'"
114114
)
115115

116116
void set_layout(string row1chars, row2chars, row3chars):

0 commit comments

Comments
 (0)