Archived
0

Zond:fix: не печатался promt

This commit is contained in:
2017-07-24 01:47:08 +03:00
parent 2435796c28
commit 149c9231ee

View File

@@ -84,6 +84,12 @@ public class ShellStdOut extends PrintStream {
@Override
public void println(String x) {
print(x.concat("\n"));
try {
cleanTrashLine(x.length());
consoleReader.drawLine();
consoleReader.flush();
} catch (Throwable ignore) {
}
_flush();
}