mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 10:55:38 +01:00
more cleanups and manager improvements
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user