Skip to content

Commit

Permalink
fix(android): Advance cursor on newline
Browse files Browse the repository at this point in the history
  • Loading branch information
darcywong00 committed Aug 15, 2024
1 parent e4ad115 commit 686cfe0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ public void run() {

// Messaging apps
case NEWLINE :
// Send newline without advancing cursor
ic.commitText("\n", 0);
// Send newline and advance cursor
ic.commitText("\n", 1);
break;

// Default ENTER action
Expand Down

0 comments on commit 686cfe0

Please sign in to comment.