mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Removing "board: " prefix from line status bar.
This commit is contained in:
@ -109,7 +109,7 @@ public class EditorLineStatus extends JComponent {
|
|||||||
g.drawString(text, 6, baseline);
|
g.drawString(text, 6, baseline);
|
||||||
|
|
||||||
g.setColor(messageForeground);
|
g.setColor(messageForeground);
|
||||||
String tmp = "board: " + name + " on " + serialport;
|
String tmp = name + " on " + serialport;
|
||||||
|
|
||||||
Rectangle2D bounds = g.getFontMetrics().getStringBounds(tmp, null);
|
Rectangle2D bounds = g.getFontMetrics().getStringBounds(tmp, null);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user