summaryrefslogtreecommitdiff
path: root/tools/editor/code_editor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/editor/code_editor.cpp')
-rw-r--r--tools/editor/code_editor.cpp4
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;