diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-12-06 00:55:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 00:55:28 +0100 |
commit | 93b107ac93db82a2790d6ebf5d0893dd72eb670a (patch) | |
tree | e199803009bff5980c5fbe5a5a7e1a45b6884f2e /editor/editor_plugin_settings.cpp | |
parent | 91fd6374eb313aa31008a6b90f067644ede3e02f (diff) | |
parent | 1b348b3c17f76cc7af1a53b648f42e76e9102b26 (diff) |
Merge pull request #44132 from aaronfranke/no-connect-compat
Remove connect *_compat methods
Diffstat (limited to 'editor/editor_plugin_settings.cpp')
-rw-r--r-- | editor/editor_plugin_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_plugin_settings.cpp b/editor/editor_plugin_settings.cpp index f984f48c1c..1fdba10a74 100644 --- a/editor/editor_plugin_settings.cpp +++ b/editor/editor_plugin_settings.cpp @@ -42,7 +42,7 @@ void EditorPluginSettings::_notification(int p_what) { if (p_what == NOTIFICATION_WM_WINDOW_FOCUS_IN) { update_plugins(); } else if (p_what == Node::NOTIFICATION_READY) { - plugin_config_dialog->connect_compat("plugin_ready", EditorNode::get_singleton(), "_on_plugin_ready"); + plugin_config_dialog->connect("plugin_ready", Callable(EditorNode::get_singleton(), "_on_plugin_ready")); plugin_list->connect("button_pressed", callable_mp(this, &EditorPluginSettings::_cell_button_pressed)); } } |