1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-01 12:24:14 +01:00

Changed color of version text in About box

This commit is contained in:
Ivan Esparza 2016-03-22 12:28:33 -07:00
parent 26e25a4d58
commit bbf909fd4f

View File

@ -1751,7 +1751,7 @@ public class Base {
Font f = new Font("SansSerif", Font.PLAIN, Theme.scale(11)); Font f = new Font("SansSerif", Font.PLAIN, Theme.scale(11));
g.setFont(f); g.setFont(f);
g.setColor(Color.white); g.setColor(new Color(0,151,156));
g.drawString(BaseNoGui.VERSION_NAME_LONG, Theme.scale(33), Theme.scale(20)); g.drawString(BaseNoGui.VERSION_NAME_LONG, Theme.scale(33), Theme.scale(20));
} }
}; };