diff options
| author | Wilson E. Alvarez | 2017-08-29 06:00:37 -0400 |
|---|---|---|
| committer | Wilson E. Alvarez | 2017-08-29 10:24:10 -0400 |
| commit | a400a65c8a3f96b5e5b4b1367a07a95b29dafc76 (patch) | |
| tree | 757fef782f4ddc8bf265c1b6bee1caf3484af1e3 /editor/plugins/script_editor_plugin.cpp | |
| parent | a91d12ab945222b0fc89d4634e3e781ba8941f33 (diff) | |
| download | godot-a400a65c8a3f96b5e5b4b1367a07a95b29dafc76.tar.gz godot-a400a65c8a3f96b5e5b4b1367a07a95b29dafc76.tar.zst godot-a400a65c8a3f96b5e5b4b1367a07a95b29dafc76.zip | |
Diffstat (limited to 'editor/plugins/script_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/script_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/script_editor_plugin.cpp b/editor/plugins/script_editor_plugin.cpp index 6f35ca1b0..650251601 100644 --- a/editor/plugins/script_editor_plugin.cpp +++ b/editor/plugins/script_editor_plugin.cpp @@ -47,7 +47,7 @@ void ScriptEditorBase::_bind_methods() { ADD_SIGNAL(MethodInfo("name_changed")); - ADD_SIGNAL(MethodInfo("script_changed")); + ADD_SIGNAL(MethodInfo("edited_script_changed")); ADD_SIGNAL(MethodInfo("request_help_search", PropertyInfo(Variant::STRING, "topic"))); ADD_SIGNAL(MethodInfo("request_help_index")); ADD_SIGNAL(MethodInfo("request_open_script_at_line", PropertyInfo(Variant::OBJECT, "script"), PropertyInfo(Variant::INT, "line"))); @@ -1622,7 +1622,7 @@ bool ScriptEditor::edit(const Ref<Script> &p_script, int p_line, int p_col, bool _update_script_names(); _save_layout(); se->connect("name_changed", this, "_update_script_names"); - se->connect("script_changed", this, "_script_changed"); + se->connect("edited_script_changed", this, "_script_changed"); se->connect("request_help_search", this, "_help_search"); se->connect("request_open_script_at_line", this, "_goto_script_line"); se->connect("go_to_help", this, "_help_class_goto"); |
