From 6136b8e840e607f6dabaa0955849b02e6ba2d91a Mon Sep 17 00:00:00 2001 From: gambas Date: Thu, 5 Apr 2018 00:45:16 +0200 Subject: [PATCH] TerminalView: Process output is sent to the terminal each 50 ms now, instead of 250 ms before. [GB.FORM.TERMINAL] * NEW: TerminalView: Process output is sent to the terminal each 50 ms now, instead of 250 ms before. --- comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class b/comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class index ba21f07f4..b06a96215 100644 --- a/comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class +++ b/comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class @@ -925,7 +925,7 @@ Public Sub Process_Read() $sBuffer &= sData Endif - If (Timer - $fStart) > 0.25 Then + If (Timer - $fStart) >= 0.05 Then $hOutputTimer.Trigger Else $hOutputTimer.Restart