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

This commit is contained in:
miguel
2018-09-24 22:20:27 -04:00
parent 4fcaf39088
commit 1c613c7fbe

View File

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