diff --git a/Source/Engine/UI/GUI/Common/Label.cs b/Source/Engine/UI/GUI/Common/Label.cs index 72d4cd188..df77acc14 100644 --- a/Source/Engine/UI/GUI/Common/Label.cs +++ b/Source/Engine/UI/GUI/Common/Label.cs @@ -344,5 +344,11 @@ namespace FlaxEngine.GUI base.PerformLayoutBeforeChildren(); } + + /// + public override string ToString() + { + return $"{GetType()}, '{ConvertedText()}'"; + } } }