mirror of
https://github.com/godotengine/godot.git
synced 2025-01-23 19:12:24 -05:00
Fix EditorInspector.property_changed
signal connection
This commit is contained in:
parent
b6cbea5e58
commit
7d15bb4064
1 changed files with 1 additions and 1 deletions
|
@ -2527,7 +2527,7 @@ void EditorInspector::_parse_added_editors(VBoxContainer *current_vbox, EditorIn
|
|||
|
||||
if (ep) {
|
||||
ep->object = object;
|
||||
ep->connect("property_changed", callable_mp(this, &EditorInspector::_property_changed));
|
||||
ep->connect("property_changed", callable_mp(this, &EditorInspector::_property_changed).bind(false));
|
||||
ep->connect("property_keyed", callable_mp(this, &EditorInspector::_property_keyed));
|
||||
ep->connect("property_deleted", callable_mp(this, &EditorInspector::_property_deleted), CONNECT_DEFERRED);
|
||||
ep->connect("property_keyed_with_value", callable_mp(this, &EditorInspector::_property_keyed_with_value));
|
||||
|
|
Loading…
Add table
Reference in a new issue