Skip to content

Commit

Permalink
Add key for Enter/Return
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinnerbone committed Mar 19, 2024
1 parent 4d8b097 commit dd7fa00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/main/java/rs/ruffle/Keyboard.kt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ val BUTTON_ROWS = arrayOf(
KeyboardButton(keyCode = 86, keyChar = 'v', text = "V"),
KeyboardButton(keyCode = 66, keyChar = 'b', text = "B"),
KeyboardButton(keyCode = 78, keyChar = 'n', text = "N"),
KeyboardButton(keyCode = 77, keyChar = 'm', text = "M")
KeyboardButton(keyCode = 77, keyChar = 'm', text = "M"),
KeyboardButton(keyCode = 13, keyChar = '\u000D', text = "")
),
arrayOf(
KeyboardButton(keyCode = 17, text = "CTRL"),
Expand Down

0 comments on commit dd7fa00

Please sign in to comment.