mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
remove prints
This commit is contained in:
parent
4c1d70a99f
commit
4ea0308bd6
2 changed files with 0 additions and 2 deletions
|
@ -76,7 +76,6 @@ func update():
|
||||||
grid.add_child(item)
|
grid.add_child(item)
|
||||||
|
|
||||||
func item_clicked(item):
|
func item_clicked(item):
|
||||||
print(item.label)
|
|
||||||
open_file = item.label
|
open_file = item.label
|
||||||
match mode:
|
match mode:
|
||||||
FileBrowserMode.WORKING_DIRECTORY:
|
FileBrowserMode.WORKING_DIRECTORY:
|
||||||
|
|
|
@ -122,7 +122,6 @@ func _input(event):
|
||||||
if type == "commit":
|
if type == "commit":
|
||||||
if start_pos:
|
if start_pos:
|
||||||
var dist = get_viewport().get_mouse_position() - start_pos
|
var dist = get_viewport().get_mouse_position() - start_pos
|
||||||
print(dist.length())
|
|
||||||
if dist.length() < 3:
|
if dist.length() < 3:
|
||||||
var state = file_browser.visible
|
var state = file_browser.visible
|
||||||
repository.close_all_file_browsers()
|
repository.close_all_file_browsers()
|
||||||
|
|
Loading…
Reference in a new issue