Skip to content

Commit 321f589

Browse files
author
Federico Fissore
committed
Reduced "scroll down" timer of ConsoleOutputStream back to 100ms
1 parent 309c8c1 commit 321f589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/cc/arduino/ConsoleOutputStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public ConsoleOutputStream(SimpleAttributeSet attributes, PrintStream printStrea
6464
this.printStream = printStream;
6565
this.newLinePrinted = false;
6666

67-
this.timer = new Timer(250, (e) -> {
67+
this.timer = new Timer(100, (e) -> {
6868
if (editorConsole != null && newLinePrinted) {
6969
editorConsole.scrollDown();
7070
newLinePrinted = false;

0 commit comments

Comments
 (0)