summaryrefslogtreecommitdiffstats
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authormatheusmdx <matheus_henriquemdx@hotmail.com>2024-08-19 16:16:06 -0300
committermatheusmdx <matheus_henriquemdx@hotmail.com>2024-08-19 16:16:06 -0300
commite8254dc3f4a72bae094711a5a07fdad63df85e62 (patch)
tree620efbf6096231c7dda5bb648c64736e8432a192 /editor/code_editor.cpp
parentda5f39889f155658cef7f7ec3cc1abb94e17d815 (diff)
downloadredot-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.cpp3
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: