diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2022-08-01 12:26:56 +0300 |
---|---|---|
committer | RĂ©mi Verschelde <rverschelde@gmail.com> | 2022-10-31 11:52:52 +0100 |
commit | 7d15bb406479c5afc7063a9bf703d2fa88a1a6af (patch) | |
tree | 2f9917d8b96086ce0b379811b85082ba6676de59 /editor | |
parent | b6cbea5e58d88c2b554fc0429ab44abec3f174ae (diff) |
Fix `EditorInspector.property_changed` signal connection
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_inspector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 3856423fc4..32b420b7a6 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -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)); |