mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Merge pull request #99150 from dalexeev/gds-fix-callable-call-errror-text
GDScript: Fix `Callable` call error text
This commit is contained in:
commit
86415f1732
7 changed files with 48 additions and 15 deletions
|
|
@ -45,7 +45,7 @@ uint32_t VariantCallable::hash() const {
|
|||
}
|
||||
|
||||
String VariantCallable::get_as_text() const {
|
||||
return vformat("%s::%s (Callable)", Variant::get_type_name(variant.get_type()), method);
|
||||
return vformat("%s::%s", Variant::get_type_name(variant.get_type()), method);
|
||||
}
|
||||
|
||||
CallableCustom::CompareEqualFunc VariantCallable::get_compare_equal_func() const {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue