micro ETB progress

This commit is contained in:
rusEfi 2019-05-04 09:05:05 -04:00
parent d4c49fd8fa
commit 4df2884ae8
2 changed files with 3 additions and 2 deletions

View File

@ -19,8 +19,9 @@ public class ETBPane {
private final JPanel content = new JPanel(new BorderLayout());
public ETBPane() {
JPanel centerPanel = new JPanel(new GridLayout(2, 1));
JPanel centerPanel = new JPanel(new GridLayout(3, 1));
centerPanel.add(GaugesGridElement.create(Sensor.PPS));
centerPanel.add(GaugesGridElement.create(Sensor.ETB_CONTROL_QUALITY));
centerPanel.add(GaugesGridElement.create(Sensor.TPS));
content.add(new CommandsPanel().getContent(), BorderLayout.WEST);

View File

@ -37,7 +37,7 @@ public class CommandsPanel {
content.add(testParameters);
content.add(spotsPane);
// content.add(UiUtils.wrap(new EtbMonteCarloSequence().getButton()));
content.add(UiUtils.wrap(new EtbMonteCarloSequence().getButton()));
content.add(AnyCommand.createArea(new Node(), ETBPane.SET_ETB + "10", false, false).getContent());
}