1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03: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);