diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-01-22 17:06:42 +0100 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-01-22 17:06:42 +0100 |
commit | 3b7b4843007faf723c400acfe5891f2768447123 (patch) | |
tree | 35419f456da8ea6c75384c1738791a87ba359ede /editor/editor_help_search.cpp | |
parent | 0bcc0e92b3f0ac57d4c4650722f347593a258572 (diff) | |
download | redot-engine-3b7b4843007faf723c400acfe5891f2768447123.tar.gz |
Fix selection regression in `EditorHelpSearch`
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r-- | editor/editor_help_search.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp index 229eb79e11..104b0a73c4 100644 --- a/editor/editor_help_search.cpp +++ b/editor/editor_help_search.cpp @@ -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) { |