diff options
| author | Juan Linietsky | 2014-12-17 01:53:34 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-12-17 01:53:34 -0300 |
| commit | c8b2a5f64a44484b566bc1e2aa12aa36850f107e (patch) | |
| tree | 2b4940b67aa018161e5d55887a3334c696752d24 /tools/editor/code_editor.cpp | |
| parent | fd4648c081afa565cb20c923c4e3c94d88e71e4f (diff) | |
| download | godot-c8b2a5f64a44484b566bc1e2aa12aa36850f107e.tar.gz godot-c8b2a5f64a44484b566bc1e2aa12aa36850f107e.tar.zst godot-c8b2a5f64a44484b566bc1e2aa12aa36850f107e.zip | |
-added brace matching to go with the new code completion
Diffstat (limited to 'tools/editor/code_editor.cpp')
| -rw-r--r-- | tools/editor/code_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/editor/code_editor.cpp b/tools/editor/code_editor.cpp index 84bf7d33f..242654c47 100644 --- a/tools/editor/code_editor.cpp +++ b/tools/editor/code_editor.cpp @@ -601,6 +601,7 @@ CodeTextEditor::CodeTextEditor() { text_editor->set_margin(MARGIN_BOTTOM,20); text_editor->add_font_override("font",get_font("source","Fonts")); text_editor->set_show_line_numbers(true); + text_editor->set_brace_matching(true); line_col = memnew( Label ); add_child(line_col); |
