Skip to content

Commit

Permalink
Moving undo/redo to bottom left and bottom right swipes. (#1210)
Browse files Browse the repository at this point in the history
- Fixes #988
  • Loading branch information
dessalines authored Dec 28, 2024
1 parent 71bfcab commit 594f4d9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ fun textEditKeyItem(center: KeyC) =
action = Cut,
color = MUTED,
),
left =
bottomLeft =
KeyC(
display = KeyDisplay.IconDisplay(Icons.AutoMirrored.Outlined.Undo),
action = Undo,
color = MUTED,
),
right =
bottomRight =
KeyC(
display = KeyDisplay.IconDisplay(Icons.AutoMirrored.Outlined.Redo),
action = Redo,
Expand Down

2 comments on commit 594f4d9

@Nixill
Copy link
Contributor

@Nixill Nixill commented on 594f4d9 Jan 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can definitely confirm that this change has greatly improved my experience with the keyboard, thank you!

@dessalines
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sweet, no probs.

Please sign in to comment.