mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-30 19:52:13 +01:00
Reduced "scroll down" timer of ConsoleOutputStream back to 100ms
This commit is contained in:
parent
309c8c1fe8
commit
321f589b0f
@ -64,7 +64,7 @@ public class ConsoleOutputStream extends ByteArrayOutputStream {
|
|||||||
this.printStream = printStream;
|
this.printStream = printStream;
|
||||||
this.newLinePrinted = false;
|
this.newLinePrinted = false;
|
||||||
|
|
||||||
this.timer = new Timer(250, (e) -> {
|
this.timer = new Timer(100, (e) -> {
|
||||||
if (editorConsole != null && newLinePrinted) {
|
if (editorConsole != null && newLinePrinted) {
|
||||||
editorConsole.scrollDown();
|
editorConsole.scrollDown();
|
||||||
newLinePrinted = false;
|
newLinePrinted = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user