Removed: Flash viewer - miter with clip support removed as it was not working correctly

This commit is contained in:
Jindra Petřík
2021-04-05 15:36:05 +02:00
parent 6b78b2fc44
commit bf387eba06
2 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -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);
}