Skip to content

Commit 14f6ecc

Browse files
committed
Fix missing positive_only suggestion
1 parent 65e73b3 commit 14f6ecc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/gdscript/gdscript_editor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ static void _find_annotation_arguments(const GDScriptParser::AnnotationNode *p_a
939939
ScriptLanguage::CodeCompletionOption hint1("attenuation", ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT);
940940
hint1.insert_text = hint1.display.quote(p_quote_style);
941941
r_result.insert(hint1.display, hint1);
942-
ScriptLanguage::CodeCompletionOption hint2("inout", ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT);
942+
ScriptLanguage::CodeCompletionOption hint2("positive_only", ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT);
943943
hint2.insert_text = hint2.display.quote(p_quote_style);
944944
r_result.insert(hint2.display, hint2);
945945
}

0 commit comments

Comments
 (0)