rollback using VALUE_STROKE_PURE

This commit is contained in:
Konstantin Bulenkov
2015-01-13 11:19:54 +01:00
parent ef546d1231
commit 3de8867ccf
@@ -80,7 +80,7 @@ public class GraphicsUtil {
final GraphicsConfig config = new GraphicsConfig(g);
final Graphics2D g2 = (Graphics2D)g;
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
g2.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_PURE);
g2.setRenderingHint(RenderingHints.KEY_STROKE_CONTROL, RenderingHints.VALUE_STROKE_NORMALIZE);
return config;
}