summaryrefslogtreecommitdiffstats
path: root/tools/editor/code_editor.cpp
diff options
context:
space:
mode:
authorjonyrock <ilms@live.ru>2014-05-07 15:38:07 +0400
committerjonyrock <ilms@live.ru>2014-05-07 15:38:07 +0400
commit0121d96288397c32ef9e3024a5866a25f7d440c5 (patch)
treefd22988aa006c680f0c3d89b8b291d66070f43c7 /tools/editor/code_editor.cpp
parentc69c99f8be157b3cea73751a548dcb4862f3314f (diff)
downloadredot-engine-0121d96288397c32ef9e3024a5866a25f7d440c5.tar.gz
call during autocompletion
Diffstat (limited to 'tools/editor/code_editor.cpp')
-rw-r--r--tools/editor/code_editor.cpp2
1 files changed, 1 insertions, 1 deletions
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<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;