pink is the new grey

This commit is contained in:
rusefi 2017-06-22 09:19:43 +03:00
parent 3aedc28bca
commit 84a0a042c8
4 changed files with 6 additions and 2 deletions

View File

@ -30,6 +30,7 @@ import static com.rusefi.binaryprotocol.IoHelper.*;
/** /**
* (c) Andrey Belomutskiy * (c) Andrey Belomutskiy
* 3/6/2015 * 3/6/2015
* @see BinaryProtocolHolder
*/ */
public class BinaryProtocol implements BinaryProtocolCommands { public class BinaryProtocol implements BinaryProtocolCommands {

View File

@ -45,7 +45,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see EngineSnifferPanel * @see EngineSnifferPanel
*/ */
public class Launcher { public class Launcher {
public static final int CONSOLE_VERSION = 20170527; public static final int CONSOLE_VERSION = 20170622;
public static final boolean SHOW_STIMULATOR = false; public static final boolean SHOW_STIMULATOR = false;
private static final String TAB_INDEX = "main_tab"; private static final String TAB_INDEX = "main_tab";
protected static final String PORT_KEY = "port"; protected static final String PORT_KEY = "port";

View File

@ -297,7 +297,7 @@ public class EngineSnifferPanel {
// injection // injection
signalBody = Color.green; signalBody = Color.green;
} else if (name.startsWith("map")) { } else if (name.startsWith("map")) {
signalBody = Color.gray; signalBody = Color.pink;
} else { } else {
signalBody = Color.gray; signalBody = Color.gray;
} }

View File

@ -42,6 +42,9 @@ public class UpDownImage extends JPanel {
private RevolutionLog time2rpm = RevolutionLog.parseRevolutions(null); private RevolutionLog time2rpm = RevolutionLog.parseRevolutions(null);
private String pin = ""; private String pin = "";
private long mouseEnterTime; private long mouseEnterTime;
/**
* we have variable color depending on signal name
*/
private Color signalBody = Color.lightGray; private Color signalBody = Color.lightGray;
private Color signalBorder = Color.blue; private Color signalBorder = Color.blue;