mirror of
https://github.com/tonytins/CozyPixelStudio.git
synced 2025-05-05 12:34:50 -04:00
Fixed issue where if you moved a frame to the start (move left), it was invisible
This commit is contained in:
parent
df0032c515
commit
e229ad1519
2 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue