diff options
author | neikeq <ignalfonsore@gmail.com> | 2015-12-01 17:43:18 +0100 |
---|---|---|
committer | neikeq <ignalfonsore@gmail.com> | 2015-12-01 17:43:18 +0100 |
commit | 4cbabf9691d422c9bc46b6f4d6d9431aa500c3ab (patch) | |
tree | 579314fe397f9d8fc9ca581c0f1d17c60b3ecb23 /tools/editor/plugins | |
parent | 772900c4ff9597d8f4e23ca9198eeaec757bb008 (diff) |
ScriptTextEditor: fix auto bracket completion not enabled
Diffstat (limited to 'tools/editor/plugins')
-rw-r--r-- | tools/editor/plugins/script_editor_plugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/plugins/script_editor_plugin.cpp b/tools/editor/plugins/script_editor_plugin.cpp index e01cf72149..6701ae79ee 100644 --- a/tools/editor/plugins/script_editor_plugin.cpp +++ b/tools/editor/plugins/script_editor_plugin.cpp @@ -1835,6 +1835,7 @@ void ScriptEditor::edit(const Ref<Script>& p_script) { ScriptTextEditor *ste = memnew( ScriptTextEditor ); ste->set_edited_script(p_script); ste->get_text_edit()->set_tooltip_request_func(this,"_get_debug_tooltip",ste); + ste->get_text_edit()->set_auto_brace_completion(EditorSettings::get_singleton()->get("text_editor/auto_brace_complete")); tab_container->add_child(ste); _go_to_tab(tab_container->get_tab_count()-1); |