diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-27 13:29:57 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-05-27 13:29:57 +0200 |
commit | 4ed62665a21ff4dc8d483c0fd268ccc8fb60f638 (patch) | |
tree | 81edb2cd6d5a694b879a4dfba6ae76235be8bdcc /editor/editor_properties.cpp | |
parent | be56cab58c056c074d1e02cd0b38641204e39f41 (diff) | |
download | redot-engine-4ed62665a21ff4dc8d483c0fd268ccc8fb60f638.tar.gz |
Replace `.bind(...).call_deferred()` with `.call_deferred(...)`
Diffstat (limited to 'editor/editor_properties.cpp')
-rw-r--r-- | editor/editor_properties.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index fe50961b54..103ea3ffc3 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -3218,7 +3218,7 @@ void EditorPropertyResource::_open_editor_pressed() { Ref<Resource> res = get_edited_property_value(); if (res.is_valid()) { // May clear the editor so do it deferred. - callable_mp(EditorNode::get_singleton(), &EditorNode::edit_item).bind(res.ptr(), this).call_deferred(); + callable_mp(EditorNode::get_singleton(), &EditorNode::edit_item).call_deferred(res.ptr(), this); } } |