mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-08 19:46:10 +01:00
Fixed: Fix shared terminal transcript joining back lines
Regression of370ac2bdcaused in5f71e3e7by the (in)famous @trygveaa
This commit is contained in:
parent
5fc2b4cd4a
commit
f1d411a5ab
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue