diff options
author | Keith Packard <keithp@keithp.com> | 2010-11-10 16:28:19 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-11-10 16:30:11 -0800 |
commit | 891e629f6ba20654b614f3ca7211a0f1c92670cb (patch) | |
tree | 2e6d7d1df8029e0712ff963bab779c155665c773 | |
parent | b0d31910da592e2f67c47c8fc3e15ce8135d5094 (diff) |
altos: Use grey leds when unlit - easier to see
-rw-r--r-- | ao-tools/altosui/AltosLights.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/altosui/AltosLights.java b/ao-tools/altosui/AltosLights.java index f1ed47c2..08e6b4f8 100644 --- a/ao-tools/altosui/AltosLights.java +++ b/ao-tools/altosui/AltosLights.java @@ -58,13 +58,13 @@ public class AltosLights extends JComponent { setLayout(gridbag); c = new GridBagConstraints(); - red = new AltosLed("/redled.png", "/redoff.png"); + red = new AltosLed("/redled.png", "/grayled.png"); c.gridx = 0; c.gridy = 0; c.insets = new Insets (0, 5, 0, 5); gridbag.setConstraints(red, c); add(red); red.set(true); - green = new AltosLed("/greenled.png", "/greenoff.png"); + green = new AltosLed("/greenled.png", "/grayled.png"); c.gridx = 1; c.gridy = 0; gridbag.setConstraints(green, c); add(green); |