diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-17 23:13:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 23:13:08 +0200 |
commit | 0ac3687d6fe3bfa90f5cfbdf7c28752de1b627f0 (patch) | |
tree | 22022175ddffa8140b268feae8ed4648223a7482 /editor/plugins/script_text_editor.cpp | |
parent | d8d7222ffbb9732f09803dae476f93c48605b4bd (diff) | |
parent | aabd9980d17492224c6c221077fbae305d80cb0b (diff) | |
download | redot-engine-0ac3687d6fe3bfa90f5cfbdf7c28752de1b627f0.tar.gz |
Merge pull request #28766 from pgoral/editor_validation_issue
Changing method signature in other class in not recognized in working…
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
-rw-r--r-- | editor/plugins/script_text_editor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index c7a438948d..ce0859a1f6 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -1810,3 +1810,7 @@ void ScriptTextEditor::register_editor() { ScriptEditor::register_create_script_editor_function(create_editor); } + +void ScriptTextEditor::validate() { + this->code_editor->validate_script(); +} |