Преглед изворни кода

Merge pull request #81 from thareh/master

Fixed UTF8 characters in output panel
Brucey пре 2 година
родитељ
комит
306fde2021
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      maxide.bmx

+ 1 - 1
maxide.bmx

@@ -4074,7 +4074,7 @@ Type TOutputPanel Extends TToolPanel	'used build and run
 
 		bytes=pipe.ReadPipe()
 		If bytes
-			line$=String.FromBytes(bytes,Len bytes)
+			line$=String.FromUTF8Bytes(bytes,Len bytes)
 			line=line.Replace(Chr(13),"")
 			Write line
 		EndIf