fix(SVG importer): fix getStrokeFillWithOpacity call to getStrokeOpacity

This commit is contained in:
Jindra Petřík
2026-04-05 09:22:10 +02:00
parent c87a35ecc6
commit a668ad4892

View File

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