Skip to content

Commit c9e2a75

Browse files
Fixed: Fix shared terminal transcript joining back lines
Regression of 370ac2b caused in 5f71e3e by the (in)famous @trygveaa
1 parent 9433f10 commit c9e2a75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terminal-emulator/src/main/java/com/termux/terminal/TerminalBuffer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public String getSelectedText(int selX1, int selY1, int selX2, int selY2) {
5454
}
5555

5656
public String getSelectedText(int selX1, int selY1, int selX2, int selY2, boolean joinBackLines) {
57-
return getSelectedText(selX1, selY1, selX2, selY2, true, false);
57+
return getSelectedText(selX1, selY1, selX2, selY2, joinBackLines, false);
5858
}
5959

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

0 commit comments

Comments
 (0)