Fix hit detection of RegularShape with transparent fill

This commit is contained in:
Maximilian Krög
2021-07-12 01:50:04 +02:00
parent 5f3b22bf7f
commit 58e2e57638

View File

@@ -587,6 +587,8 @@ class RegularShape extends ImageStyle {
context.setLineDash(renderOptions.lineDash);
context.lineDashOffset = renderOptions.lineDashOffset;
}
context.lineJoin = renderOptions.lineJoin;
context.miterLimit = renderOptions.miterLimit;
context.stroke();
}
}