From 0121d96288397c32ef9e3024a5866a25f7d440c5 Mon Sep 17 00:00:00 2001 From: jonyrock Date: Wed, 7 May 2014 15:38:07 +0400 Subject: call during autocompletion --- tools/editor/code_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/editor/code_editor.cpp') diff --git a/tools/editor/code_editor.cpp b/tools/editor/code_editor.cpp index 994e3e1e68..7e6a7a30b8 100644 --- a/tools/editor/code_editor.cpp +++ b/tools/editor/code_editor.cpp @@ -492,7 +492,7 @@ void CodeTextEditor::_complete_request(const String& p_request, int p_line) { List entries; _code_complete_script(text_editor->get_text(),p_request,p_line,&entries); - print_line("COMPLETE: "+p_request); + // print_line("COMPLETE: "+p_request); Vector strs; strs.resize(entries.size()); int i=0; -- cgit v1.2.3 From 6c9203fdafc3cbed2bf31d2adfa4d8f82e3e69c7 Mon Sep 17 00:00:00 2001 From: jonyrock Date: Wed, 7 May 2014 15:42:55 +0400 Subject: remove degud output --- tools/editor/code_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/editor/code_editor.cpp') diff --git a/tools/editor/code_editor.cpp b/tools/editor/code_editor.cpp index 7e6a7a30b8..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()); -- cgit v1.2.3