Convert Control to ContainerControl.

This commit is contained in:
Jean-Baptiste Perrier
2021-03-17 20:53:42 +01:00
parent fb70368c8d
commit c8b57d417c
7 changed files with 13 additions and 13 deletions

View File

@@ -105,7 +105,7 @@ namespace FlaxEngine.GUI
}
/// <inheritdoc />
public override void Draw()
public override void DrawSelf()
{
// Draw cached texture
if (_texture && !_invalid && !_isDuringTextureDraw)
@@ -119,7 +119,7 @@ namespace FlaxEngine.GUI
}
// Draw default UI directly
base.Draw();
base.DrawSelf();
}
/// <inheritdoc />