Skip to content

Commit

Permalink
More fixes to MessageEaseFR (#474)
Browse files Browse the repository at this point in the history
* More fixes to MessageEaseFR

- The '-' is on the wrong side (left instead of right) of 'a'
- The 'i' key was set to 4-way swipe but should be 8-way since it has symbols on both verticals and diagonals

* Remove unused import
  • Loading branch information
pulkomandy committed Oct 10, 2023
1 parent e69c861 commit 45bfa53
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import com.dessalines.thumbkey.utils.KeyItemC
import com.dessalines.thumbkey.utils.KeyboardC
import com.dessalines.thumbkey.utils.KeyboardMode
import com.dessalines.thumbkey.utils.SwipeDirection
import com.dessalines.thumbkey.utils.SwipeNWay

val MESSAGEEASE_FR_MAIN = KeyboardC(
listOf(
Expand All @@ -40,7 +39,7 @@ val MESSAGEEASE_FR_MAIN = KeyboardC(
display = KeyDisplay.TextDisplay("à"),
action = KeyAction.CommitText("à"),
),
SwipeDirection.LEFT to KeyC(
SwipeDirection.RIGHT to KeyC(
display = KeyDisplay.TextDisplay("-"),
action = KeyAction.CommitText("-"),
color = ColorVariant.MUTED,
Expand Down Expand Up @@ -107,7 +106,6 @@ val MESSAGEEASE_FR_MAIN = KeyboardC(
size = FontSizeVariant.LARGE,
color = ColorVariant.PRIMARY,
),
swipeType = SwipeNWay.FOUR_WAY_DIAGONAL,
swipes = mapOf(
SwipeDirection.LEFT to KeyC(
display = KeyDisplay.TextDisplay("?"),
Expand Down Expand Up @@ -425,7 +423,7 @@ val MESSAGEEASE_FR_SHIFTED = KeyboardC(
display = KeyDisplay.TextDisplay("À"),
action = KeyAction.CommitText("À"),
),
SwipeDirection.LEFT to KeyC(
SwipeDirection.RIGHT to KeyC(
display = KeyDisplay.TextDisplay("-"),
action = KeyAction.CommitText("-"),
color = ColorVariant.MUTED,
Expand Down

0 comments on commit 45bfa53

Please sign in to comment.