Set rocket file loading dialog modality to DOCUMENT_MODAL so it won't interfere with closing the bad thrustcurve message.

This commit is contained in:
JoePfeiffer 2021-10-21 14:44:58 -06:00
parent 5c6ca75e51
commit 19b07f6c73

View File

@ -57,7 +57,7 @@ public class SwingWorkerDialog extends JDialog implements PropertyChangeListener
private SwingWorkerDialog(Window parent, String title, String label, SwingWorker<?, ?> w) {
super(parent, title, ModalityType.APPLICATION_MODAL);
super(parent, title, ModalityType.DOCUMENT_MODAL);
this.worker = w;
w.addPropertyChangeListener(this);