File tree 2 files changed +2
-1
lines changed
src/com/jpexs/decompiler/flash/gui
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file.
17
17
- [ #2418 ] AS3 - initialization of class static vars in script initializer (Haxe)
18
18
- [ #2397 ] DefineScalingGrid - improper scaling on negative Xmin, Ymin
19
19
- [ #2425 ] ZIP/SWC reading - "Only DEFLATED entries can have EXT descriptor" message
20
+ - Drawing points and shape paths highlighting did not respect UI scale factor
20
21
21
22
## [ 22.0.2] - 2025-01-17
22
23
### Added
Original file line number Diff line number Diff line change @@ -928,7 +928,7 @@ public void render() {
928
928
trans .scale (1 / SWF .unitDivisor , 1 / SWF .unitDivisor );
929
929
trans .scale (zoomDouble , zoomDouble );
930
930
AffineTransform oldTransform = g2 .getTransform ();
931
- g2 .setTransform (trans );
931
+ g2 .transform (trans );
932
932
933
933
if (hilightedEdge != null ) {
934
934
g2 .setStroke (new BasicStroke ((float ) (SWF .unitDivisor * 6 / zoomDouble )));
You can’t perform that action at this time.
0 commit comments