Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MessageEaseDE.kt #402

Merged
merged 6 commits into from
Sep 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ val MESSAGEEASE_DE_MAIN = KeyboardC(
action = KeyAction.CommitText("="),
color = ColorVariant.MUTED,
),
SwipeDirection.RIGHT to KeyC(
SwipeDirection.BOTTOM_RIGHT to KeyC(
display = KeyDisplay.TextDisplay("€"),
action = KeyAction.CommitText("€"),
color = ColorVariant.MUTED,
Expand Down Expand Up @@ -225,7 +225,7 @@ val MESSAGEEASE_DE_MAIN = KeyboardC(
SwipeDirection.BOTTOM to KeyC(
display = KeyDisplay.TextDisplay("ß"),
action = KeyAction.CommitText("ß"),
color = ColorVariant.PRIMARY,

),
SwipeDirection.RIGHT to KeyC(
display = KeyDisplay.TextDisplay("*"),
Expand All @@ -249,7 +249,7 @@ val MESSAGEEASE_DE_MAIN = KeyboardC(
SwipeDirection.RIGHT to KeyC(
display = KeyDisplay.TextDisplay("z"),
action = KeyAction.CommitText("z"),
color = ColorVariant.PRIMARY,

),
SwipeDirection.TOP_LEFT to KeyC(
display = KeyDisplay.TextDisplay(
Expand Down Expand Up @@ -555,7 +555,7 @@ val MESSAGEEASE_DE_SHIFTED = KeyboardC(
action = KeyAction.CommitText("ß"),

),
SwipeDirection.BOTTOM_RIGHT to KeyC(
SwipeDirection.RIGHT to KeyC(
display = KeyDisplay.TextDisplay("*"),
action = KeyAction.CommitText("*"),
color = ColorVariant.MUTED,
Expand Down Expand Up @@ -585,6 +585,12 @@ val MESSAGEEASE_DE_SHIFTED = KeyboardC(
action = KeyAction.CommitText("\""),
color = ColorVariant.MUTED,

),
SwipeDirection.TOP_RIGHT to KeyC(
display = KeyDisplay.TextDisplay("'"),
action = KeyAction.CommitText("'"),
color = ColorVariant.MUTED,

),
SwipeDirection.BOTTOM_LEFT to KeyC(
display = KeyDisplay.TextDisplay(","),
Expand Down