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

Fix issue when exporting and the user has specific frames selected, then changes the layers and then changes the frames again

This commit is contained in:
Emmanouil Papadeas 2024-09-11 17:01:03 +03:00
parent 504313483d
commit 62d573ae01

View file

@ -146,6 +146,9 @@ func external_export(project := Global.current_project) -> void:
func process_data(project := Global.current_project) -> void: func process_data(project := Global.current_project) -> void:
var frames := _calculate_frames(project)
if frames.size() > blended_frames.size():
cache_blended_frames(project)
match current_tab: match current_tab:
ExportTab.IMAGE: ExportTab.IMAGE:
process_animation(project) process_animation(project)