mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Autocompletion: Use correct completion type for argument options
This commit is contained in:
parent
019ab8745f
commit
98f3af86fa
1 changed files with 1 additions and 1 deletions
|
|
@ -2936,7 +2936,7 @@ static void _find_call_arguments(GDScriptParser::CompletionContext &p_context, c
|
|||
opt = "^" + opt;
|
||||
}
|
||||
}
|
||||
ScriptLanguage::CodeCompletionOption option(opt, ScriptLanguage::CODE_COMPLETION_KIND_FUNCTION);
|
||||
ScriptLanguage::CodeCompletionOption option(opt, ScriptLanguage::CODE_COMPLETION_KIND_PLAIN_TEXT);
|
||||
r_result.insert(option.display, option);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue