mirror of
https://github.com/godotengine/godot.git
synced 2026-04-19 18:31:25 +00:00
Fix missing positive_only suggestion
This commit is contained in:
parent
65e73b3a5e
commit
14f6ecc421
1 changed files with 1 additions and 1 deletions
|
|
@ -939,7 +939,7 @@ static void _find_annotation_arguments(const GDScriptParser::AnnotationNode *p_a
|
|||
ScriptLanguage::CodeCompletionOption hint1("attenuation", ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT);
|
||||
hint1.insert_text = hint1.display.quote(p_quote_style);
|
||||
r_result.insert(hint1.display, hint1);
|
||||
ScriptLanguage::CodeCompletionOption hint2("inout", ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT);
|
||||
ScriptLanguage::CodeCompletionOption hint2("positive_only", ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT);
|
||||
hint2.insert_text = hint2.display.quote(p_quote_style);
|
||||
r_result.insert(hint2.display, hint2);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue