2
0
Эх сурвалжийг харах

[TextView.ToString] Do not append the List's ToString, append the actual contents, fixes #133

miguel 6 жил өмнө
parent
commit
1c613c7fbe

+ 1 - 1
Terminal.Gui/Views/TextView.cs

@@ -114,7 +114,7 @@ namespace Terminal.Gui {
 		{
 			var sb = new StringBuilder ();
 			foreach (var line in lines) {
-				sb.Append (line);
+				sb.Append (ustring.Make (line).ToString ());
 				sb.AppendLine ();
 			}
 			return sb.ToString ();