From 365283904a092e4a0cb1f8f2397e8bdaa818bdbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Tue, 25 Oct 2022 00:12:25 +0200 Subject: [PATCH] Fixed minimum stroke width --- .../jpexs/decompiler/flash/exporters/shape/BitmapExporter.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java index e1626f1b9..1e46e0b57 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/exporters/shape/BitmapExporter.java @@ -429,7 +429,8 @@ public class BitmapExporter extends ShapeExporterBase { //always display minimum strokem of 1 pixel, no matter how zoomed it is if (thickness * realZoom < 1) { - thickness = 1 / realZoom; + //thickness = 1 / realZoom; + //TODO: fix for #1684 } if (joinStyle == BasicStroke.JOIN_MITER) {