Add order for Margin properties

This commit is contained in:
Wojtek Figat
2021-05-30 10:53:34 +02:00
parent e6074149e5
commit 97de7a627e

View File

@@ -29,21 +29,25 @@ namespace FlaxEngine.GUI
/// <summary>
/// Holds the margin to the left.
/// </summary>
[EditorOrder(0)]
public float Left;
/// <summary>
/// Holds the margin to the right.
/// </summary>
[EditorOrder(1)]
public float Right;
/// <summary>
/// Holds the margin to the top.
/// </summary>
[EditorOrder(2)]
public float Top;
/// <summary>
/// Holds the margin to the bottom.
/// </summary>
[EditorOrder(3)]
public float Bottom;
/// <summary>