Fallback to theme icon when no custom icon is set in autocompletion

(cherry picked from commit e8254dc3f4)
This commit is contained in:
matheusmdx 2024-08-19 16:16:06 -03:00 committed by Rémi Verschelde
parent ecbb9a9c6a
commit bd552ff609
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 3 additions and 0 deletions

View File

@ -994,6 +994,9 @@ Ref<Texture2D> CodeTextEditor::_get_completion_icon(const ScriptLanguage::CodeCo
tex = get_editor_theme_icon(p_option.display);
} else {
tex = EditorNode::get_singleton()->get_class_icon(p_option.display);
if (!tex.is_valid()) {
tex = get_editor_theme_icon(SNAME("Object"));
}
}
} break;
case ScriptLanguage::CODE_COMPLETION_KIND_ENUM: