diff options
author | matheusmdx <matheus_henriquemdx@hotmail.com> | 2024-08-19 16:16:06 -0300 |
---|---|---|
committer | matheusmdx <matheus_henriquemdx@hotmail.com> | 2024-08-19 16:16:06 -0300 |
commit | e8254dc3f4a72bae094711a5a07fdad63df85e62 (patch) | |
tree | 620efbf6096231c7dda5bb648c64736e8432a192 /editor/code_editor.cpp | |
parent | da5f39889f155658cef7f7ec3cc1abb94e17d815 (diff) | |
download | redot-engine-e8254dc3f4a72bae094711a5a07fdad63df85e62.tar.gz |
Fallback to theme icon when no custom icon is set in autocompletion
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index d24b1edd70..8664c167b5 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -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: |