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 9433f10757
commit c9e2a75e82
No known key found for this signature in database
GPG key ID: BCCC0287E9DCCAED

View file

@ -54,7 +54,7 @@ public final class TerminalBuffer {
} }
public String getSelectedText(int selX1, int selY1, int selX2, int selY2, boolean joinBackLines) { 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) { public String getSelectedText(int selX1, int selY1, int selX2, int selY2, boolean joinBackLines, boolean joinFullLines) {