diff options
author | Yuri Sizov <11782833+YuriSizov@users.noreply.github.com> | 2023-01-24 22:26:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-24 22:26:03 +0300 |
commit | fab9926a958ffb5771c59a93f4416d3f3df45240 (patch) | |
tree | 1a022f066c756ff1867d7a8fa74a26d6af48a184 /editor/connections_dialog.cpp | |
parent | 9de0c73e4529afe3ea060332a03e17cc0581efd8 (diff) | |
parent | 8f706be6fa122a0e3ebf6b48a011023f4a20516c (diff) | |
download | redot-engine-fab9926a958ffb5771c59a93f4416d3f3df45240.tar.gz |
Merge pull request #65137 from dalexeev/editor-naming
Rearrange `editor/naming/*` project settings
Diffstat (limited to 'editor/connections_dialog.cpp')
-rw-r--r-- | editor/connections_dialog.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/editor/connections_dialog.cpp b/editor/connections_dialog.cpp index 9ff480f130..b89fdbfa00 100644 --- a/editor/connections_dialog.cpp +++ b/editor/connections_dialog.cpp @@ -30,6 +30,7 @@ #include "connections_dialog.h" +#include "core/config/project_settings.h" #include "editor/doc_tools.h" #include "editor/editor_help.h" #include "editor/editor_node.h" @@ -242,9 +243,9 @@ StringName ConnectDialog::generate_method_callback_name(Node *p_source, String p String dst_method; if (p_source == p_target) { - dst_method = String(EDITOR_GET("interface/editors/default_signal_callback_to_self_name")).format(subst); + dst_method = String(GLOBAL_GET("editor/naming/default_signal_callback_to_self_name")).format(subst); } else { - dst_method = String(EDITOR_GET("interface/editors/default_signal_callback_name")).format(subst); + dst_method = String(GLOBAL_GET("editor/naming/default_signal_callback_name")).format(subst); } return dst_method; @@ -1238,9 +1239,6 @@ ConnectionsDock::ConnectionsDock() { tree->connect("item_mouse_selected", callable_mp(this, &ConnectionsDock::_rmb_pressed)); add_theme_constant_override("separation", 3 * EDSCALE); - - EDITOR_DEF("interface/editors/default_signal_callback_name", "_on_{node_name}_{signal_name}"); - EDITOR_DEF("interface/editors/default_signal_callback_to_self_name", "_on_{signal_name}"); } ConnectionsDock::~ConnectionsDock() { |