You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Merge pull request #79387 from HolonProduction/completion-update-keep-open
Update completion menu even if no options exist
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user