Editor: Improve signal callback generation

This commit is contained in:
Danil Alexeev 2023-08-18 07:35:58 +03:00
parent 221884e6bc
commit 4b5daf06ef
No known key found for this signature in database
GPG key ID: 124453E157DA8DC7
3 changed files with 38 additions and 8 deletions

View file

@ -500,7 +500,7 @@ String GDScriptLanguage::make_function(const String &p_class, const String &p_na
s += p_args[i].get_slice(":", 0);
if (th) {
String type = p_args[i].get_slice(":", 1);
if (!type.is_empty() && type != "var") {
if (!type.is_empty()) {
s += ": " + type;
}
}