Skip to content

Commit

Permalink
Merge pull request godotengine#87476 from AThousandShips/search_fix
Browse files Browse the repository at this point in the history
Fix selection regression in `EditorHelpSearch`
  • Loading branch information
YuriSizov committed Jan 22, 2024
2 parents a07df64 + 3b7b484 commit 6fea273
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions editor/editor_help_search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,9 @@ bool EditorHelpSearch::Runner::_phase_match_classes() {
}

void EditorHelpSearch::Runner::_populate_cache() {
// Deselect to prevent re-selection issues.
results_tree->deselect_all();

root_item = results_tree->get_root();

if (root_item) {
Expand Down

0 comments on commit 6fea273

Please sign in to comment.