From 1c613c7fbe09ce08bef93928f53bb9eb5ca99a3d Mon Sep 17 00:00:00 2001 From: miguel Date: Mon, 24 Sep 2018 22:20:27 -0400 Subject: [PATCH] [TextView.ToString] Do not append the List's ToString, append the actual contents, fixes #133 --- Terminal.Gui/Views/TextView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Terminal.Gui/Views/TextView.cs b/Terminal.Gui/Views/TextView.cs index fb14a91bc..1ca435b7d 100644 --- a/Terminal.Gui/Views/TextView.cs +++ b/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 ();