summaryrefslogtreecommitdiff
path: root/editor/editor_plugin_settings.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-09-18 13:47:04 +0200
committerGitHub <noreply@github.com>2022-09-18 13:47:04 +0200
commite5594c26b14e75d8b75d1f697cf2bfbd6254a50c (patch)
tree8494286f576fd6bdcdec87eb344878d12e8d42c6 /editor/editor_plugin_settings.cpp
parent7a0a3fea94e9fc70736ef93f2a024e023d53d6ed (diff)
parent882a4f890620df1b029bc5de0aa58c72dd087d61 (diff)
Merge pull request #44143 from KoBeWi/callable_multiplayer
Diffstat (limited to 'editor/editor_plugin_settings.cpp')
-rw-r--r--editor/editor_plugin_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_plugin_settings.cpp b/editor/editor_plugin_settings.cpp
index a8df486381..bd19df41fe 100644
--- a/editor/editor_plugin_settings.cpp
+++ b/editor/editor_plugin_settings.cpp
@@ -46,7 +46,7 @@ void EditorPluginSettings::_notification(int p_what) {
} break;
case Node::NOTIFICATION_READY: {
- plugin_config_dialog->connect("plugin_ready", Callable(EditorNode::get_singleton(), "_on_plugin_ready"));
+ plugin_config_dialog->connect("plugin_ready", callable_mp(EditorNode::get_singleton(), &EditorNode::_on_plugin_ready));
plugin_list->connect("button_clicked", callable_mp(this, &EditorPluginSettings::_cell_button_pressed));
} break;
}