diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-04-24 17:27:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 17:27:04 +0200 |
commit | 97f04e42f66c919e29a6059c4093dc54dd9475f1 (patch) | |
tree | 3cde1fb289fc5d477adff8b2c706feaaf6bfc370 | |
parent | 39f77f95b859cfaac0a25b74c5ec9a894c01483c (diff) | |
parent | b192c7d1ac3dc06f169312f624eabbd45115ce2d (diff) |
Merge pull request #37172 from theoway/autoCompletionBug
Fixed the auto-completion bug in gdscript_editor
-rw-r--r-- | modules/gdscript/gdscript_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_editor.cpp b/modules/gdscript/gdscript_editor.cpp index 221cce205a..7ad0682637 100644 --- a/modules/gdscript/gdscript_editor.cpp +++ b/modules/gdscript/gdscript_editor.cpp @@ -2150,7 +2150,7 @@ static void _find_identifiers(const GDScriptCompletionContext &p_context, bool p } const GDScriptParser::ClassNode *clss = p_context._class; - bool _static = !p_context.function || p_context.function->_static; + bool _static = p_context.function && p_context.function->_static; while (clss) { GDScriptCompletionContext c = p_context; |