auto-sync

This commit is contained in:
rusEfi 2014-09-08 08:02:54 -05:00
parent 8d94ee2bae
commit a1bd0222e8
3 changed files with 8 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import javax.swing.*;
* @see WavePanel
*/
public class Launcher extends FrameHelper {
public static final int CONSOLE_VERSION = 20140907;
public static final int CONSOLE_VERSION = 20140908;
public static final boolean SHOW_STIMULATOR = true;
private final String port;

View File

@ -45,6 +45,8 @@ public class SensorGauge {
private static void createGaugeBody(final Sensor sensor, final JPanel wrapper) {
final Radial gauge = createRadial(sensor.getName(), sensor.getUnits(), sensor.getMaxValue(), sensor.getMinValue());
UpDownImage.setTwoLineToolTip(gauge, "Double-click to detach", "Right-click to change");
gauge.setBackgroundColor(sensor.getColor());
SensorCentral.getInstance().addListener(sensor, new SensorCentral.SensorListener() {

View File

@ -38,7 +38,11 @@ public class UpDownImage extends JPanel {
}
public void setToolTip() {
setToolTipText("<html>Channel " + name + "<br>Physical pin: " + pin + "</html>");
setTwoLineToolTip(this, "Channel " + name, "Physical pin: " + pin);
}
public static void setTwoLineToolTip(JComponent component, String line1, String line2) {
component.setToolTipText("<html>" + line1 + "<br>" + line2 + "</html>");
}
public void setZoomProvider(ZoomProvider zoomProvider) {