From 316526512f5da6da7735696397cabcb220108dc8 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Mon, 28 Dec 2015 11:34:12 +0100 Subject: [PATCH] transparent stroke fix --- .../com/jpexs/decompiler/flash/importers/svg/SvgImporter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgImporter.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgImporter.java index cd96ba4c2..df31d8da2 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgImporter.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgImporter.java @@ -1508,7 +1508,7 @@ public class SvgImporter { scr.lineStyles = new LINESTYLEARRAY(); SvgFill strokeFill = style.getStrokeFillWithOpacity(); - if (strokeFill != null) { + if (strokeFill != null && strokeFill != SvgTransparentFill.INSTANCE) { Color lineColor = strokeFill.toColor(); scr.lineStyles.lineStyles = new LINESTYLE[1];