Fix Label to draw text under children

This commit is contained in:
Wojtek Figat
2023-08-29 11:41:29 +02:00
parent 0defecaeb9
commit 17cbd66aed

View File

@@ -201,9 +201,9 @@ namespace FlaxEngine.GUI
}
/// <inheritdoc />
public override void Draw()
public override void DrawSelf()
{
base.Draw();
base.DrawSelf();
var rect = new Rectangle(new Float2(Margin.Left, Margin.Top), Size - Margin.Size);