Skip to content

Commit

Permalink
Fixed: Fix shared terminal transcript joining back lines
Browse files Browse the repository at this point in the history
Regression of 370ac2b caused in 5f71e3e by the (in)famous @trygveaa
  • Loading branch information
agnostic-apollo committed Jun 17, 2024
1 parent 9433f10 commit c9e2a75
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public String getSelectedText(int selX1, int selY1, int selX2, int selY2) {
}

public String getSelectedText(int selX1, int selY1, int selX2, int selY2, boolean joinBackLines) {
return getSelectedText(selX1, selY1, selX2, selY2, true, false);
return getSelectedText(selX1, selY1, selX2, selY2, joinBackLines, false);
}

public String getSelectedText(int selX1, int selY1, int selX2, int selY2, boolean joinBackLines, boolean joinFullLines) {
Expand Down

0 comments on commit c9e2a75

Please sign in to comment.