diff options
author | David Snopek <dsnopek@gmail.com> | 2024-04-24 13:01:53 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-04-24 13:22:19 -0500 |
commit | 06373ce1cf737a33d6a7b2b14cfe25ed729b9c48 (patch) | |
tree | fbb2f921cb89f3d3f71d3eec999f86a941b72802 /src/classes/wrapped.cpp | |
parent | ad307e4b9ceb2efc40a238c19d37f41def4742d6 (diff) | |
download | redot-cpp-06373ce1cf737a33d6a7b2b14cfe25ed729b9c48.tar.gz |
Fix NOTIFICATION_POSTINITIALIZE sent twice to native parent class
Diffstat (limited to 'src/classes/wrapped.cpp')
-rw-r--r-- | src/classes/wrapped.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/classes/wrapped.cpp b/src/classes/wrapped.cpp index ad0eefb..594cfef 100644 --- a/src/classes/wrapped.cpp +++ b/src/classes/wrapped.cpp @@ -51,10 +51,7 @@ void Wrapped::_postinitialize() { } godot::internal::gdextension_interface_object_set_instance_binding(_owner, godot::internal::token, this, _get_bindings_callbacks()); if (extension_class) { - Object *obj = dynamic_cast<Object *>(this); - if (obj) { - obj->notification(Object::NOTIFICATION_POSTINITIALIZE); - } + _notificationv(Object::NOTIFICATION_POSTINITIALIZE); } } |