From 97de7a627e91a55202154e64d3d48a40a4006e8c Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 30 May 2021 10:53:34 +0200 Subject: [PATCH] Add order for Margin properties --- Source/Engine/UI/GUI/Margin.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Engine/UI/GUI/Margin.cs b/Source/Engine/UI/GUI/Margin.cs index 01c0ac3ab..cc6ba7ce9 100644 --- a/Source/Engine/UI/GUI/Margin.cs +++ b/Source/Engine/UI/GUI/Margin.cs @@ -29,21 +29,25 @@ namespace FlaxEngine.GUI /// /// Holds the margin to the left. /// + [EditorOrder(0)] public float Left; /// /// Holds the margin to the right. /// + [EditorOrder(1)] public float Right; /// /// Holds the margin to the top. /// + [EditorOrder(2)] public float Top; /// /// Holds the margin to the bottom. /// + [EditorOrder(3)] public float Bottom; ///