mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Merge pull request #98692 from Sticksman/bug-fix-98668
Fix crash in Quick Open Dialog
This commit is contained in:
commit
5b895b2b3f
@ -489,6 +489,10 @@ void QuickOpenResultContainer::handle_search_box_input(const Ref<InputEvent> &p_
|
||||
}
|
||||
|
||||
void QuickOpenResultContainer::_move_selection_index(Key p_key) {
|
||||
// Don't move selection if there are no results.
|
||||
if (num_visible_results <= 0) {
|
||||
return;
|
||||
}
|
||||
const int max_index = num_visible_results - 1;
|
||||
|
||||
int idx = selection_index;
|
||||
|
Loading…
x
Reference in New Issue
Block a user