Fixed: Loading icon did not respect UI scale factor

This commit is contained in:
Jindra Petřík
2025-04-20 09:59:56 +02:00
parent 9540190c13
commit decef3078a
2 changed files with 2 additions and 1 deletions

View File

@@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file.
- [#2400] Transforming - buttons must use hit test frame outline
- [#2413] AS3 direct editation - try/catch clause in instance initializer
- [#2386] Editor mode - not able to save shape/morphshape points
- Loading icon did not respect UI scale factor
## [22.0.2] - 2025-01-17
### Added

View File

@@ -135,7 +135,7 @@ public class LoadingPanel extends JPanel {
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
AffineTransform t = AffineTransform.getRotateInstance(getRotation(), size / 2.0, size / 2.0);
g2.setTransform(t);
g2.transform(t);
g2.drawImage(lastImage, 0, 0, this);
}