mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-27 00:07:58 +01:00
[TextView.ToString] Do not append the List's ToString, append the actual contents, fixes #133
This commit is contained in:
@@ -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 ();
|
||||
|
||||
Reference in New Issue
Block a user