Fix text clipping behind the button in Behavior Knowledge Selector editor

This commit is contained in:
Wojtek Figat
2025-02-21 19:34:35 +01:00
parent bd9a5f03a4
commit b81b0b7616
2 changed files with 7 additions and 3 deletions

View File

@@ -26,6 +26,8 @@ namespace FlaxEditor.CustomEditors.Editors
public override void Initialize(LayoutElementsContainer layout)
{
_label = layout.ClickableLabel(Path).CustomControl;
_label.Margin = new Margin(0, 20.0f, 0, 0);
_label.ClipText = true;
_label.RightClick += ShowPicker;
var button = new Button
{