Skip to content

Commit

Permalink
Merge pull request #79387 from HolonProduction/completion-update-keep…
Browse files Browse the repository at this point in the history
…-open

Update completion menu even if no options exist
  • Loading branch information
akien-mga committed Mar 4, 2024
2 parents f2045ba + 46197ce commit 314efe9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions editor/code_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -932,9 +932,6 @@ void CodeTextEditor::_complete_request() {
if (code_complete_func) {
code_complete_func(code_complete_ud, ctext, &entries, forced);
}
if (entries.size() == 0) {
return;
}

for (const ScriptLanguage::CodeCompletionOption &e : entries) {
Color font_color = completion_font_color;
Expand Down

0 comments on commit 314efe9

Please sign in to comment.