Fixed minimum stroke width

This commit is contained in:
Jindra Petřík
2022-10-25 00:12:25 +02:00
parent 31b13cddc9
commit 365283904a

View File

@@ -429,7 +429,8 @@ public class BitmapExporter extends ShapeExporterBase {
//always display minimum strokem of 1 pixel, no matter how zoomed it is
if (thickness * realZoom < 1) {
thickness = 1 / realZoom;
//thickness = 1 / realZoom;
//TODO: fix for #1684
}
if (joinStyle == BasicStroke.JOIN_MITER) {