TerminalView: Text property correctly takes into account line wrapping.
[GB.FORM.TERMINAL] * BUG: TerminalView: Text property correctly takes into account line wrapping.
This commit is contained in:
parent
2bd970231c
commit
2128890f9a
1 changed files with 2 additions and 2 deletions
|
@ -1299,11 +1299,11 @@ Private Function Text_Read() As String
|
|||
|
||||
For Each hLine In $hScreen.Lines
|
||||
If Not hLine Then
|
||||
aLine.Add("")
|
||||
aLine.Add("\n")
|
||||
Else
|
||||
aLine.Add(hLine.Text)
|
||||
If hLine.NewLine Then aLine[aLine.Max] &= "\n"
|
||||
Endif
|
||||
If hLine.NewLine Then aLine[aLine.Max] &= "\n"
|
||||
Next
|
||||
|
||||
Return aLine.Join("")
|
||||
|
|
Loading…
Reference in a new issue