Skip to content

Commit 346d1f0

Browse files
committedNov 24, 2023
Fix visible layers being wrong when exporting
1 parent 8784427 commit 346d1f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/Autoload/Export.gd

+1-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ func blend_selected_cels(
485485
image: Image, frame: Frame, origin := Vector2(0, 0), project := Global.current_project
486486
) -> void:
487487
for cel_ind in frame.cels.size():
488-
var test_array := [project.current_frame, cel_ind]
488+
var test_array := [project.frames.find(frame), cel_ind]
489489
if not test_array in project.selected_cels:
490490
continue
491491
if frame.cels[cel_ind] is GroupCel:

0 commit comments

Comments
 (0)
Please sign in to comment.