Format files and remove trailing spaces

This commit is contained in:
Aaron Franke 2020-12-04 16:23:51 -05:00
parent 5ab629b438
commit 715e737e6f
No known key found for this signature in database
GPG Key ID: 40A1750B977E56BF
8 changed files with 35 additions and 35 deletions

View File

@ -739,7 +739,7 @@ func _on_Button_pressed():
func _on_PaintCanvasContainer_mouse_entered(): func _on_PaintCanvasContainer_mouse_entered():
if mouse_on_top == true: if mouse_on_top:
return return
mouse_on_top = true mouse_on_top = true
paint_canvas.tool_layer.clear() paint_canvas.tool_layer.clear()
@ -748,7 +748,7 @@ func _on_PaintCanvasContainer_mouse_entered():
func _on_PaintCanvasContainer_mouse_exited(): func _on_PaintCanvasContainer_mouse_exited():
if mouse_on_top == false: if not mouse_on_top:
return return
mouse_on_top = false mouse_on_top = false
paint_canvas.tool_layer.clear() paint_canvas.tool_layer.clear()