You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Update completion menu even if no options exist
This commit is contained in:
@@ -940,9 +940,6 @@ void CodeTextEditor::_complete_request() {
|
|||||||
if (code_complete_func) {
|
if (code_complete_func) {
|
||||||
code_complete_func(code_complete_ud, ctext, &entries, forced);
|
code_complete_func(code_complete_ud, ctext, &entries, forced);
|
||||||
}
|
}
|
||||||
if (entries.size() == 0) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const ScriptLanguage::CodeCompletionOption &e : entries) {
|
for (const ScriptLanguage::CodeCompletionOption &e : entries) {
|
||||||
Color font_color = completion_font_color;
|
Color font_color = completion_font_color;
|
||||||
|
|||||||
Reference in New Issue
Block a user