mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 03:01:54 +00:00
Removed: Flash viewer - miter with clip support removed as it was not working correctly
This commit is contained in:
@@ -33,6 +33,9 @@ All notable changes to this project will be documented in this file.
|
||||
- AS decompilation - §§push before loop
|
||||
- [#1678] Flash viewer - shapes with mitter join do not render correctly
|
||||
|
||||
### Removed
|
||||
- Flash viewer - miter with clip support removed as it was not working correctly
|
||||
|
||||
## [14.3.1] - 2021-03-25
|
||||
### Fixed
|
||||
- "protected", "const", "namespace", "package" are not reserved keywords in AS1/2
|
||||
|
||||
@@ -416,7 +416,8 @@ public class BitmapExporter extends ShapeExporterBase {
|
||||
}
|
||||
|
||||
if (joinStyle == BasicStroke.JOIN_MITER) {
|
||||
lineStroke = new MiterClipBasicStroke(new BasicStroke((float) thickness, capStyle, joinStyle, miterLimit));
|
||||
lineStroke = new BasicStroke((float) thickness, capStyle, joinStyle, miterLimit);
|
||||
//lineStroke = new MiterClipBasicStroke((BasicStroke) lineStroke);
|
||||
} else {
|
||||
lineStroke = new BasicStroke((float) thickness, capStyle, joinStyle);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user