pink is the new grey
This commit is contained in:
parent
95889d8f22
commit
f4ea3ca03f
|
@ -30,6 +30,7 @@ import static com.rusefi.binaryprotocol.IoHelper.*;
|
|||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/6/2015
|
||||
* @see BinaryProtocolHolder
|
||||
*/
|
||||
public class BinaryProtocol implements BinaryProtocolCommands {
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
|||
* @see EngineSnifferPanel
|
||||
*/
|
||||
public class Launcher {
|
||||
public static final int CONSOLE_VERSION = 20170527;
|
||||
public static final int CONSOLE_VERSION = 20170622;
|
||||
public static final boolean SHOW_STIMULATOR = false;
|
||||
private static final String TAB_INDEX = "main_tab";
|
||||
protected static final String PORT_KEY = "port";
|
||||
|
|
|
@ -297,7 +297,7 @@ public class EngineSnifferPanel {
|
|||
// injection
|
||||
signalBody = Color.green;
|
||||
} else if (name.startsWith("map")) {
|
||||
signalBody = Color.gray;
|
||||
signalBody = Color.pink;
|
||||
} else {
|
||||
signalBody = Color.gray;
|
||||
}
|
||||
|
|
|
@ -42,6 +42,9 @@ public class UpDownImage extends JPanel {
|
|||
private RevolutionLog time2rpm = RevolutionLog.parseRevolutions(null);
|
||||
private String pin = "";
|
||||
private long mouseEnterTime;
|
||||
/**
|
||||
* we have variable color depending on signal name
|
||||
*/
|
||||
private Color signalBody = Color.lightGray;
|
||||
private Color signalBorder = Color.blue;
|
||||
|
||||
|
|
Loading…
Reference in New Issue