diff --git a/Utilities/InspectForm.cs b/Utilities/InspectForm.cs index 426deb9b5..3213095d8 100644 --- a/Utilities/InspectForm.cs +++ b/Utilities/InspectForm.cs @@ -81,6 +81,8 @@ namespace MatterHackers.MatterControl _inspectedWidget = value; + this.Text = "Inspector" + (string.IsNullOrEmpty(_inspectedWidget?.Name) ? "" : " - " + _inspectedWidget.Name); + if (_inspectedWidget != null) { ancestryTree = new HashSet(_inspectedWidget.Parents());