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.
This commit is contained in:
gambas 2018-04-05 00:45:16 +02:00
parent 19609d3eb4
commit 6136b8e840

View file

@ -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