diff --git a/Source/Editor/Windows/Search/ContentFinder.cs b/Source/Editor/Windows/Search/ContentFinder.cs index 06b5852dd..0788ce8a8 100644 --- a/Source/Editor/Windows/Search/ContentFinder.cs +++ b/Source/Editor/Windows/Search/ContentFinder.cs @@ -161,7 +161,8 @@ namespace FlaxEditor.Windows.Search // Setup _resultPanel.ScrollViewTo(Float2.Zero); - _searchBox.Text = string.Empty; + // Select the text in the search bar so that the user can just start typing + _searchBox.SelectAll(); _searchBox.Focus(); }