Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
kairusds committed Mar 25, 2024
1 parent ebd7864 commit a8947a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/main/res/layout/keyboard.xml
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:tag="8"
android:tag="46"
android:text="" />

</LinearLayout>
Expand Down
2 changes: 1 addition & 1 deletion src/keycodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub fn android_keycode_to_ruffle(android: Android) -> Option<Ruffle> {
Android::Tab => Ruffle::Tab,
Android::Space => Ruffle::Space,
Android::Enter => Ruffle::Return,
Android::Del => Ruffle::Backspace, // AKEYCODE_DEL is the backspace key in Android.
Android::Del => Ruffle::Delete,
Android::Grave => Ruffle::Grave,
Android::Minus => Ruffle::Minus,
Android::Equals => Ruffle::Equals,
Expand Down

0 comments on commit a8947a8

Please sign in to comment.