Skip to content

BUG 1133 fix to TerminalView Paste

username-removed-1530544 requested to merge (removed):master into master

line 924 in TerminalView.class -- If Not $hProcess Or Not $hPipeOut Then Return -- will return when either or both $hProcess or $hPipeOut are null. It should return only when both are null. Correct: If (Not $hProcess) And (Not $hPipeOut) Then Return 'brackets not really necessary but help clarity

Merge request reports