diff --git a/addons/text_editor/TE_FilesList.gd b/addons/text_editor/TE_FilesList.gd index 6cef56a..ab6ae84 100644 --- a/addons/text_editor/TE_FilesList.gd +++ b/addons/text_editor/TE_FilesList.gd @@ -120,7 +120,6 @@ func _input(e:InputEvent): editor.add_child(drag_label) else: - prints(dragging, dragging != hovered, type, file) if dragging and dragging != hovered: var p2 = _meta_to_file(dragging) var drag_type = p2[0] diff --git a/addons/text_editor/TE_TextEditor.gd b/addons/text_editor/TE_TextEditor.gd index aa02580..50e426d 100644 --- a/addons/text_editor/TE_TextEditor.gd +++ b/addons/text_editor/TE_TextEditor.gd @@ -349,7 +349,6 @@ func _menu_view_file(index:int): var text = popup_view_file.get_item_text(index) var ext = text.substr(2) if ext in exts_enabled: - prints(index, text) exts_enabled[ext] = not exts_enabled[ext] popup_view_file.set_item_checked(index, exts_enabled[ext])