diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-09-01 08:20:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-01 08:20:20 +0200 |
commit | 8812f0c896a14ee6e9b870f71dc2b27a1e834787 (patch) | |
tree | df98b634fcbbc02b16f2149409562b5d41eaabf2 /modules | |
parent | d111ca4afcce494da6948cb6c09d85b0d6db8235 (diff) | |
parent | 660c700f9c1b2537ec9f2ae90fbd9c756a96883e (diff) |
Merge pull request #64444 from timothyqiu/action-completion
Fix action name completion for `Input`
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index c18412bc63..4c908166df 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -2031,8 +2031,13 @@ static bool _guess_identifier_type(GDScriptParser::CompletionContext &p_context, r_type.type.kind = GDScriptParser::DataType::NATIVE; r_type.type.native_type = p_identifier; r_type.type.is_constant = true; - r_type.type.is_meta_type = !Engine::get_singleton()->has_singleton(p_identifier); - r_type.value = Variant(); + if (Engine::get_singleton()->has_singleton(p_identifier)) { + r_type.type.is_meta_type = false; + r_type.value = Engine::get_singleton()->get_singleton_object(p_identifier); + } else { + r_type.type.is_meta_type = true; + r_type.value = Variant(); + } } return false; |