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