Skip to content

Commit

Permalink
Autocompletion: Use correct completion type for argument options
Browse files Browse the repository at this point in the history
  • Loading branch information
HolonProduction committed Jan 3, 2025
1 parent bdf625b commit ce0c1d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/gdscript/gdscript_editor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2840,7 +2840,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);
}
}
Expand Down

0 comments on commit ce0c1d4

Please sign in to comment.