mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-17 22:23:10 +03:00
Blue! color scheme changed (and hardcoded in source code to ensure consistency with image files).
This commit is contained in:
@ -52,7 +52,10 @@ public class EditorLineStatus extends JComponent {
|
||||
this.textarea = textarea;
|
||||
textarea.editorLineStatus = this;
|
||||
|
||||
background = Preferences.getColor("linestatus.bgcolor");
|
||||
// hardcoding new blue color scheme for consistency with images,
|
||||
// see EditorStatus.java for details.
|
||||
//background = Preferences.getColor("linestatus.bgcolor");
|
||||
background = new Color(0x04, 0x4F, 0x6F);
|
||||
font = Preferences.getFont("linestatus.font");
|
||||
foreground = Preferences.getColor("linestatus.color");
|
||||
high = Preferences.getInteger("linestatus.height");
|
||||
|
Reference in New Issue
Block a user