1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Replace .bind(...).call_deferred() with .call_deferred(...)

This commit is contained in:
A Thousand Ships
2024-05-27 13:29:57 +02:00
parent be56cab58c
commit 4ed62665a2
11 changed files with 26 additions and 26 deletions

View File

@@ -5638,7 +5638,7 @@ CanvasItemEditor::CanvasItemEditor() {
clear(); // Make sure values are initialized.
// Update the menus' checkboxes.
callable_mp(this, &CanvasItemEditor::set_state).bind(get_state()).call_deferred();
callable_mp(this, &CanvasItemEditor::set_state).call_deferred(get_state());
}
CanvasItemEditor *CanvasItemEditor::singleton = nullptr;