Use TreeNode TextWidget text for ToString

- Improve debugging experience with helpful identifier
This commit is contained in:
John Lewin 2019-01-25 07:58:11 -08:00
parent 35e2b280f2
commit c5e3ff95a4

View file

@ -212,6 +212,11 @@ namespace MatterHackers.MatterControl.CustomWidgets
}
public override string ToString()
{
return textWidget?.Text ?? "";
}
#region Properties
public bool Checked { get; set; }