1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-17 06:52:18 +01:00

Removing "board: " prefix from line status bar.

This commit is contained in:
David A. Mellis 2011-08-24 11:50:02 -04:00
parent 365d4acf6e
commit 91a94cbe7e

View File

@ -109,7 +109,7 @@ public class EditorLineStatus extends JComponent {
g.drawString(text, 6, baseline);
g.setColor(messageForeground);
String tmp = "board: " + name + " on " + serialport;
String tmp = name + " on " + serialport;
Rectangle2D bounds = g.getFontMetrics().getStringBounds(tmp, null);