TerminalView: Ignore errors if resizing the running process virtual terminal fails.

[GB.FORM.TERMINAL]
* BUG: TerminalView: Ignore errors if resizing the running process virtual terminal fails.
This commit is contained in:
gambas 2021-06-14 00:18:02 +02:00
parent 08a24c7927
commit 2613dfab3a

View file

@ -339,7 +339,7 @@ End
Public Sub ResizeTimer_Timer()
If $hProcess Then $hProcess.Term.Resize($hScreen.Width, $hScreen.Height)
If $hProcess Then Try $hProcess.Term.Resize($hScreen.Width, $hScreen.Height)
$hResizeTimer.Stop
End