diff --git a/Source/Editor/Windows/Search/ContentFinder.cs b/Source/Editor/Windows/Search/ContentFinder.cs index d7111997e..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.SelectionRange = new TextRange(0, _searchBox.TextLength); + // Select the text in the search bar so that the user can just start typing + _searchBox.SelectAll(); _searchBox.Focus(); }