Fix issue with scroll bars not showing in item search panel when clear search button is clicked.

This commit is contained in:
Chandler Cox
2024-09-27 11:24:33 -05:00
parent a4350cdf3f
commit 6e91e26dfe

View File

@@ -223,7 +223,7 @@ namespace FlaxEditor.GUI
}
}
private readonly TextBox _searchBox;
private readonly SearchBox _searchBox;
private readonly Panel _scrollPanel;
private List<DropPanel> _categoryPanels;
private bool _waitingForInput;
@@ -260,6 +260,7 @@ namespace FlaxEditor.GUI
Width = Width - 3,
};
_searchBox.TextChanged += OnSearchFilterChanged;
_searchBox.ClearSearchButton.Clicked += () => PerformLayout();
// Panel with scrollbar
_scrollPanel = new Panel(ScrollBars.Vertical)