Skip to content

Commit

Permalink
Fixed missing and overlapping keys on CZ keyboard (#386)
Browse files Browse the repository at this point in the history
* Fixed missing and overlapping keys on CZ keyboard

When using the keyboard IRL, I found that the keys were missing, so I fixed it. Hopefully, I've setup Android Studio correctly and this will work.

* next try
  • Loading branch information
Michael36500 committed Sep 5, 2023
1 parent aa0b4b8 commit 401c631
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,7 @@ val THUMBKEY_CZ_V1_SHIFTED = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.EIGHT_WAY,
swipes = mapOf(
SwipeDirection.TOP_LEFT to KeyC(
display = KeyDisplay.TextDisplay("D"),
Expand All @@ -529,7 +530,7 @@ val THUMBKEY_CZ_V1_SHIFTED = KeyboardC(
display = KeyDisplay.TextDisplay("Ď"),
action = KeyAction.CommitText("Ď"),
),
SwipeDirection.TOP to KeyC(
SwipeDirection.LEFT to KeyC(
display = KeyDisplay.TextDisplay("Ě"),
action = KeyAction.CommitText("Ě"),
),
Expand Down

0 comments on commit 401c631

Please sign in to comment.