diff options
author | reduz <reduzio@gmail.com> | 2014-05-07 10:25:13 -0300 |
---|---|---|
committer | reduz <reduzio@gmail.com> | 2014-05-07 10:25:13 -0300 |
commit | 2495df4ffce5ed3f9d94e0d10801fa6bb6cfba19 (patch) | |
tree | bebafaf37e1081447b1872df402d54f437b3e757 /tools/editor | |
parent | c69c99f8be157b3cea73751a548dcb4862f3314f (diff) | |
parent | 6c9203fdafc3cbed2bf31d2adfa4d8f82e3e69c7 (diff) |
Merge pull request #379 from jonyrock/auto_brace_complete_open_bug_fix
call during autocompletion
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/code_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/editor/code_editor.cpp b/tools/editor/code_editor.cpp index 994e3e1e68..734bf48975 100644 --- a/tools/editor/code_editor.cpp +++ b/tools/editor/code_editor.cpp @@ -242,7 +242,7 @@ bool FindReplaceDialog::_search() { if (found) { - print_line("found"); + // print_line("found"); text_edit->cursor_set_line(line); text_edit->cursor_set_column(col+text.length()); text_edit->select(line,col,line,col+text.length()); @@ -492,7 +492,7 @@ void CodeTextEditor::_complete_request(const String& p_request, int p_line) { List<String> entries; _code_complete_script(text_editor->get_text(),p_request,p_line,&entries); - print_line("COMPLETE: "+p_request); + // print_line("COMPLETE: "+p_request); Vector<String> strs; strs.resize(entries.size()); int i=0; |