About screen looking hideous on Windwos

This commit is contained in:
Ben Fry
2015-09-30 10:38:48 -04:00
parent e1b4c123ce
commit dc7d98e2ad
2 changed files with 7 additions and 2 deletions

View File

@@ -26,6 +26,8 @@ import java.awt.Color;
import java.awt.Font;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.Window;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
@@ -90,8 +92,9 @@ public class About extends Window {
// Graphics2D g2 = Toolkit.prepareGraphics(g);
// g2.scale(0.5, 0.5);
// g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
// RenderingHints.VALUE_TEXT_ANTIALIAS_DEFAULT);
Graphics2D g2 = (Graphics2D) g;
g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING,
RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
g.drawImage(icon.getImage(), 0, 0, width, height, null);
// g.setColor(Color.ORANGE);

View File

@@ -18,6 +18,8 @@ X https://github.com/processing/processing/issues/3895
X https://github.com/processing/processing/pull/3897
X Clean up delete dir function
X https://github.com/processing/processing/pull/3910
X don't follow symlinks when deleting directories
X https://github.com/processing/processing/pull/3916
X show number of updates available in the footer
X https://github.com/processing/processing/issues/3518
X https://github.com/processing/processing/pull/3896