[#2531] Don't close edit sim dialog after plotting or exporting
This commit is contained in:
parent
42f38ad749
commit
6e247b273d
@ -373,12 +373,13 @@ public class SimulationConfigDialog extends JDialog {
|
||||
if (plot != null) {
|
||||
plot.setVisible(true);
|
||||
}
|
||||
closeDialog();
|
||||
return;
|
||||
} else if (tabIdx == EXPORT_IDX) {
|
||||
if (exportTab == null || exportTab.doExport()) {
|
||||
if (exportTab == null) {
|
||||
closeDialog();
|
||||
return;
|
||||
}
|
||||
exportTab.doExport();
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user