This commit is contained in:
Wojtek Figat
2021-09-24 16:38:26 +02:00
parent 799d79bd2f
commit 777febc198
3 changed files with 6 additions and 15 deletions

View File

@@ -162,7 +162,7 @@ namespace FlaxEditor.Windows
WatermarkText = "Search...",
Parent = this,
};
_searchBox.TextChanged += OnSearchBoxTextChanged;
_searchBox.TextChanged += Refresh;
_hScroll = new HScrollBar(this, Height - _scrollSize, Width - _scrollSize, _scrollSize)
{
ThumbThickness = 10,
@@ -229,11 +229,6 @@ namespace FlaxEditor.Windows
menu.Show(_viewDropdown.Parent, _viewDropdown.BottomLeft);
}
private void OnSearchBoxTextChanged()
{
Refresh();
}
private void ToggleLogTypeShow(LogType type)
{
_logTypeShowMask ^= (int)type;