#738 Frame export fails with EndOfStreamException: Premature end of the stream reached: fixed

This commit is contained in:
2014-12-03 22:01:52 +01:00
parent 689ec29448
commit fc5d3b7060
5 changed files with 23 additions and 13 deletions
@@ -143,7 +143,7 @@ public class Timeline {
this.id = id;
this.swf = swf;
this.displayRect = displayRect;
this.frameRate = swf.frameRate;
this.frameRate = swf.frameRate < 1 ? 1 : swf.frameRate;
this.timelined = parentTag == null ? swf : (Timelined) parentTag;
this.parentTag = parentTag;
this.tags = tags;