rusefi/java_console/ui/src/main/java/com/rusefi/PaneSettings.java

15 lines
414 B
Java
Raw Normal View History

2019-07-14 08:09:51 -07:00
package com.rusefi;
import com.rusefi.core.preferences.storage.Node;
2019-07-14 08:09:51 -07:00
public class PaneSettings {
private static final String SHOW_ETB = "show_etb_pane";
public boolean showEtbPane;
public boolean showTriggerShapePane;
public boolean showStimulatorPane;
public PaneSettings(Node config) {
2019-08-31 15:39:56 -07:00
showEtbPane = Boolean.getBoolean(SHOW_ETB) ;//config.getBoolProperty(SHOW_ETB, false);
2019-07-14 08:09:51 -07:00
}
}