Removed coord clamping from fill_gaps()

This should make line making behave as expected when the mouse is outside of canvas boundaries
This commit is contained in:
OverloadedOrama 2020-05-31 00:42:35 +03:00
parent 7a509a2047
commit 4fc2888b68
2 changed files with 2 additions and 4 deletions

View file

@ -238,8 +238,8 @@ func _notification(what : int) -> void:
show_quit_dialog()
func _on_files_dropped(files : PoolStringArray, _screen : int) -> void:
handle_loading_files(files)
func _on_files_dropped(_files : PoolStringArray, _screen : int) -> void:
handle_loading_files(_files)
func on_new_project_file_menu_option_pressed(id : int) -> void: