From a668ad48921ddf87dc9be769827ef9ceaf9a511b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 5 Apr 2026 09:22:10 +0200 Subject: [PATCH] fix(SVG importer): fix getStrokeFillWithOpacity call to getStrokeOpacity --- .../src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java index 2c9f3a426..32591ed4f 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/importers/svg/SvgStyle.java @@ -324,7 +324,7 @@ class SvgStyle { } Color strokeFillColor = ((SvgColor) strokeFill).color; - int opacity = (int) Math.round(getOpacity() * getStopOpacity() * 255); + int opacity = (int) Math.round(getOpacity() * getStrokeOpacity() * 255); if (opacity > 255) { opacity = 255; }