unused ratio parameter removed

This commit is contained in:
honfika@gmail.com
2016-02-17 08:02:55 +01:00
parent 253f5392c7
commit 130cddff08
5 changed files with 8 additions and 8 deletions

View File

@@ -778,7 +778,7 @@ public final class ImagePanel extends JPanel implements MediaDisplay {
Matrix m = new Matrix();
m.translate(-rect.Xmin * zoom, -rect.Ymin * zoom);
m.scale(zoom);
timeline.toImage(frame, time, frame, renderContext, image, false, m, m, null);
timeline.toImage(frame, time, renderContext, image, false, m, m, null);
Graphics2D gg = (Graphics2D) image.getGraphics();
gg.setStroke(new BasicStroke(3));