diff options
author | jonyrock <ilms@live.ru> | 2014-05-07 15:38:07 +0400 |
---|---|---|
committer | jonyrock <ilms@live.ru> | 2014-05-07 15:38:07 +0400 |
commit | 0121d96288397c32ef9e3024a5866a25f7d440c5 (patch) | |
tree | fd22988aa006c680f0c3d89b8b291d66070f43c7 /tools/editor/code_editor.cpp | |
parent | c69c99f8be157b3cea73751a548dcb4862f3314f (diff) | |
download | redot-engine-0121d96288397c32ef9e3024a5866a25f7d440c5.tar.gz |
call during autocompletion
Diffstat (limited to 'tools/editor/code_editor.cpp')
-rw-r--r-- | tools/editor/code_editor.cpp | 2 |
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; |