Kleiner Bugfix

This commit is contained in:
ngb 2022-06-21 21:32:27 +02:00
parent 83039f0717
commit 2b20cc0f8e
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ public class Picture extends Shape {
}
AffineTransform current = graphics.getTransform();
graphics.transform(getTransform());
graphics.transform(transform);
graphics.drawImage(image, 0, 0, (int) width, (int) height, null);
graphics.setTransform(current);
}