瀏覽代碼

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

miguel 6 年之前
父節點
當前提交
1c613c7fbe
共有 1 個文件被更改,包括 1 次插入1 次删除
  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 ();