Fixed: Flash viewer - scaling grid - ignore nonshapes when scaling

This commit is contained in:
Jindra Petřík
2021-03-31 18:03:26 +02:00
parent 82b5062771
commit ca00b8399a
16 changed files with 38 additions and 23 deletions

View File

@@ -2910,7 +2910,7 @@ public final class SWF implements SWFContainerItem, Timelined {
renderContext.cursorPosition = cursorPosition;
renderContext.mouseButton = mouseButton;
ExportRectangle viewRect = new ExportRectangle(rect);
timeline.toImage(frame, time, renderContext, image, false, m, new Matrix(), m, colorTransform, zoom, false, viewRect, m);
timeline.toImage(frame, time, renderContext, image, false, m, new Matrix(), m, colorTransform, zoom, false, viewRect, m, true, Timeline.DRAW_MODE_ALL);
return image;
}