1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 09:09:47 +00:00

Fixed issue where if you moved a frame to the start (move left), it was invisible

This commit is contained in:
OverloadedOrama 2020-06-01 19:03:08 +03:00
parent df0032c515
commit e229ad1519
2 changed files with 3 additions and 0 deletions

View file

@ -21,6 +21,7 @@ Igor Santarek (jegor377), rob-a-bolton
### Fixed
- Fixed failed imports of gpl palettes by adding support for the newer variant of gpl files. ([#250](https://github.com/Orama-Interactive/Pixelorama/pull/250))
- Fixed alpha blending and lighting/darkening issues when drawing pixels with mirroring.
- Fixed issue where if you moved a frame to the start (move left), it was invisible.
<br><br>
## [v0.7] - 2020-05-16

View file

@ -430,6 +430,7 @@ func undo(_canvases : Array, layer_index : int = -1) -> void:
canvas_parent.move_child(_canvases[0], _canvases[0].frame)
elif action_name == "Change Frame Order":
canvas_parent.move_child(_canvases[0], _canvases[0].frame)
canvas_parent.move_child(canvas_parent.get_node("TransparentChecker"), 0)
canvas.update()
if !project_has_changed:
@ -461,6 +462,7 @@ func redo(_canvases : Array, layer_index : int = -1) -> void:
animation_timer.stop()
elif action_name == "Change Frame Order":
canvas_parent.move_child(_canvases[0], _canvases[0].frame)
canvas_parent.move_child(canvas_parent.get_node("TransparentChecker"), 0)
canvas.update()
if !project_has_changed: