Enable the edit sim action for multiple sims

This commit is contained in:
SiboVG 2023-03-28 18:44:08 +02:00
parent fa7f7635ca
commit fd0018c9a4

View File

@ -662,7 +662,7 @@ public class SimulationPanel extends JPanel {
@Override
public void updateEnabledState() {
setEnabled(simulationTable.getSelectedRowCount() == 1);
setEnabled(simulationTable.getSelectedRowCount() > 0);
}
}