Imported German translation in the Project Settings

This commit is contained in:
OverloadedOrama 2019-12-15 13:44:53 +02:00
parent 2d97bb6e65
commit f3ab5960ba
11 changed files with 29 additions and 29 deletions

View file

@ -61,7 +61,7 @@ func _process(delta : float) -> void:
Global.canvas.update_texture(Global.canvas.current_layer_index)
tex.create_from_image(img, 0)
update()
# Makes line2d invisible
if weakref(Global.canvas.line_2d).get_ref(): # Checks to see if line_2d object still exists
Global.canvas.line_2d.default_color = Color(0, 0, 0, 0)
@ -102,7 +102,7 @@ func _process(delta : float) -> void:
Global.selected_pixels.append(Vector2(xx, yy))
Global.canvas.handle_redo("Rectangle Select") #Redo
# Makes line2d visible
if weakref(Global.canvas.line_2d).get_ref(): # Checks to see if line_2d object still exists
Global.canvas.line_2d.default_color = Color.darkgray