#1133 Incorrect frame order for nested sprite

This commit is contained in:
honfika@gmail.com
2016-01-17 17:48:00 +01:00
parent d1cbe91e65
commit e6c41b3e12
2 changed files with 3 additions and 3 deletions

View File

@@ -308,7 +308,7 @@ public class FolderPreviewPanel extends JPanel {
zoom = ratio;
}
}
imgSrc = SWF.frameToImageGet(swf.getTimeline(), fn.frame, 0, null, 0, rect, new Matrix(), new ColorTransform(), null, true, zoom);
imgSrc = SWF.frameToImageGet(swf.getTimeline(), fn.frame, fn.frame, null, 0, rect, new Matrix(), new ColorTransform(), null, true, zoom);
width = imgSrc.getWidth();
height = imgSrc.getHeight();
} else if (treeItem instanceof ImageTag) {