Fixed: Fix shared terminal transcript joining back lines

Regression of 370ac2bd caused in 5f71e3e7 by the (in)famous @trygveaa
This commit is contained in:
agnostic-apollo 2022-06-19 03:08:28 +05:00
parent 5fc2b4cd4a
commit f1d411a5ab
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ public final class TerminalBuffer {
}
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) {