more cleanups and manager improvements

This commit is contained in:
Ben Fry
2013-02-17 22:14:08 -05:00
parent 63911354c1
commit 9b7c122f5d
4 changed files with 14 additions and 11 deletions

View File

@@ -22,7 +22,6 @@
package processing.app.contrib;
import java.awt.Color;
import javax.swing.JLabel;
@@ -41,7 +40,8 @@ class StatusPanel extends JLabel {
}
void setErrorMessage(String message) {
setForeground(Color.RED);
//setForeground(Color.RED);
setForeground(new Color(160, 0, 0));
setText(message);
repaint();
}