add margin around info label

This commit is contained in:
xxSeys1
2025-05-01 22:32:28 +02:00
parent b1b36ea1a3
commit b0048d6540

View File

@@ -1,6 +1,7 @@
// Copyright (c) Wojciech Figat. All rights reserved.
using System.Collections.Generic;
using System.Reflection.Emit;
using FlaxEditor.CustomEditors.GUI;
using FlaxEngine;
using FlaxEngine.GUI;
@@ -96,6 +97,7 @@ namespace FlaxEditor.CustomEditors.Dedicated
var group = layout.Group("Info");
_infoLabel = group.Label(string.Empty).Label;
_infoLabel.AutoHeight = true;
_infoLabel.Margin = new Margin(3);
}
}
}