mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-25 12:15:32 +00:00
Fixed #1970 FLA export - do not strip empty frames at the end of timeline
This commit is contained in:
@@ -2469,7 +2469,8 @@ public class XFLConverter {
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!lastElements.isEmpty()) {
|
||||
if (!lastElements.isEmpty() || writer2.length() > 0)
|
||||
{
|
||||
frame++;
|
||||
convertFrame(false, null, null, (frame - duration < 0 ? 0 : frame - duration), duration, "", lastElements, files, writer2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user