fixing typo in class name
This commit is contained in:
parent
e630d6ff69
commit
7497c8791f
|
@ -157,7 +157,7 @@ public class Launcher {
|
|||
}
|
||||
if (!LinkManager.isLogViewer()) {
|
||||
tabbedPane.add("Bench Test", new BenchTestPane().getContent());
|
||||
tabbedPane.add("Presets", new PresetsPans().getContent());
|
||||
tabbedPane.add("Presets", new PresetsPane().getContent());
|
||||
}
|
||||
|
||||
tabbedPaneAdd("Engine Sniffer", engineSnifferPanel.getPanel(), engineSnifferPanel.getTabSelectedListener());
|
||||
|
|
|
@ -10,14 +10,14 @@ import java.awt.event.ActionListener;
|
|||
/**
|
||||
* (c) Andrey Belomutskiy 2013-2019
|
||||
*/
|
||||
public class PresetsPans {
|
||||
public class PresetsPane {
|
||||
// see rusefi_enums.h
|
||||
private static final int MIATA_NA_1_6 = 41;
|
||||
private static final int MAZDA_MIATA_2003 = 47;
|
||||
|
||||
private JPanel content = new JPanel(new GridLayout(2, 4));
|
||||
|
||||
public PresetsPans() {
|
||||
public PresetsPane() {
|
||||
content.add(new SetEngineTypeCommandControl("Miata NA6", "engines/miata_na.png", MIATA_NA_1_6).getContent());
|
||||
content.add(new SetEngineTypeCommandControl("Miata NB2", "engines/miata_nb.png", MAZDA_MIATA_2003).getContent());
|
||||
}
|
Loading…
Reference in New Issue