auto-sync
This commit is contained in:
parent
8d94ee2bae
commit
a1bd0222e8
|
@ -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;
|
||||
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue