Merge pull request #32209 from YeldhamDev/fix_connection_type_hints
Fix incorrect typing when creating methods via the connection dialog
This commit is contained in:
commit
d364e88c2a
|
@ -529,7 +529,7 @@ void ConnectionsDock::_make_or_edit_connection() {
|
|||
// Pick up args here before "it" is deleted by update_tree.
|
||||
script_function_args = it->get_metadata(0).operator Dictionary()["args"];
|
||||
for (int i = 0; i < cToMake.binds.size(); i++) {
|
||||
script_function_args.append("extra_arg_" + itos(i));
|
||||
script_function_args.append("extra_arg_" + itos(i) + ":" + Variant::get_type_name(cToMake.binds[i].get_type()));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue