1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Add icon for local variable completion options

This commit is contained in:
HolonProduction
2024-07-11 08:46:38 +02:00
parent 24d74510e5
commit 5c9d80592a
2 changed files with 2 additions and 1 deletions

View File

@@ -1067,7 +1067,7 @@ Ref<Texture2D> CodeTextEditor::_get_completion_icon(const ScriptLanguage::CodeCo
tex = get_editor_theme_icon(SNAME("NodePath"));
break;
case ScriptLanguage::CODE_COMPLETION_KIND_VARIABLE:
tex = get_editor_theme_icon(SNAME("Variant"));
tex = get_editor_theme_icon(SNAME("LocalVariable"));
break;
case ScriptLanguage::CODE_COMPLETION_KIND_CONSTANT:
tex = get_editor_theme_icon(SNAME("MemberConstant"));