Fixed: Folder preview of frames with time increasing

This commit is contained in:
Jindra Petřík
2021-03-23 08:24:22 +01:00
parent 62aabf1057
commit c35ea5f152
2 changed files with 2 additions and 1 deletions

View File

@@ -311,7 +311,7 @@ public class FolderPreviewPanel extends JPanel {
String key = "frame_" + fn.frame + "_" + timeline.id + "_" + zoom;
imgSrc = swf.getFromCache(key);
if (imgSrc == null) {
imgSrc = SWF.frameToImageGet(timeline, fn.frame, fn.frame, null, 0, rect, new Matrix(), null, null, zoom);
imgSrc = SWF.frameToImageGet(timeline, fn.frame, 0, null, 0, rect, new Matrix(), null, null, zoom);
swf.putToCache(key, imgSrc);
}