Add label/button text to string convertion for better debugging

This commit is contained in:
Wojtek Figat
2025-09-09 10:42:10 +02:00
parent 24e088fc08
commit 8921cf5156

View File

@@ -344,5 +344,11 @@ namespace FlaxEngine.GUI
base.PerformLayoutBeforeChildren();
}
/// <inheritdoc />
public override string ToString()
{
return $"{GetType()}, '{ConvertedText()}'";
}
}
}