mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-20 14:54:31 +01:00
Halved "scroll down" timer of ConsoleOutputStream
This commit is contained in:
parent
1e074cce42
commit
f9c80816aa
@ -64,7 +64,7 @@ public class ConsoleOutputStream extends ByteArrayOutputStream {
|
||||
this.printStream = printStream;
|
||||
this.newLinePrinted = false;
|
||||
|
||||
this.timer = new Timer(500, (e) -> {
|
||||
this.timer = new Timer(250, (e) -> {
|
||||
if (editorConsole != null && newLinePrinted) {
|
||||
editorConsole.scrollDown();
|
||||
newLinePrinted = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user