Browse Source

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

miguel 6 years ago
parent
commit
1c613c7fbe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Terminal.Gui/Views/TextView.cs

+ 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 ();