mirror of
https://github.com/Relintai/GraphicsEditor.git
synced 2024-11-12 08:15:17 +01:00
Format files and remove trailing spaces
This commit is contained in:
parent
5ab629b438
commit
715e737e6f
@ -739,7 +739,7 @@ func _on_Button_pressed():
|
||||
|
||||
|
||||
func _on_PaintCanvasContainer_mouse_entered():
|
||||
if mouse_on_top == true:
|
||||
if mouse_on_top:
|
||||
return
|
||||
mouse_on_top = true
|
||||
paint_canvas.tool_layer.clear()
|
||||
@ -748,7 +748,7 @@ func _on_PaintCanvasContainer_mouse_entered():
|
||||
|
||||
|
||||
func _on_PaintCanvasContainer_mouse_exited():
|
||||
if mouse_on_top == false:
|
||||
if not mouse_on_top:
|
||||
return
|
||||
mouse_on_top = false
|
||||
paint_canvas.tool_layer.clear()
|
||||
|
Loading…
Reference in New Issue
Block a user