From 4ea0308bd68344b37871a569314d5e18ed5edaff Mon Sep 17 00:00:00 2001 From: bleeptrack Date: Tue, 27 Oct 2020 16:55:06 +0100 Subject: [PATCH] remove prints --- scenes/file_browser.gd | 1 - scenes/node.gd | 1 - 2 files changed, 2 deletions(-) diff --git a/scenes/file_browser.gd b/scenes/file_browser.gd index 6776e3d..1b4e934 100644 --- a/scenes/file_browser.gd +++ b/scenes/file_browser.gd @@ -76,7 +76,6 @@ func update(): grid.add_child(item) func item_clicked(item): - print(item.label) open_file = item.label match mode: FileBrowserMode.WORKING_DIRECTORY: diff --git a/scenes/node.gd b/scenes/node.gd index 2ec378e..c0546ac 100644 --- a/scenes/node.gd +++ b/scenes/node.gd @@ -122,7 +122,6 @@ func _input(event): if type == "commit": if start_pos: var dist = get_viewport().get_mouse_position() - start_pos - print(dist.length()) if dist.length() < 3: var state = file_browser.visible repository.close_all_file_browsers()