From c2ac8204b15a4d49a738be523a3e0a5990104eaa Mon Sep 17 00:00:00 2001 From: kruland2607 Date: Thu, 8 Nov 2012 20:56:55 -0600 Subject: [PATCH] Always have the delay spinner enabled just like in the recovery tab of the component configuration. --- .../flightconfiguration/SelectDeploymentConfigDialog.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/src/net/sf/openrocket/gui/dialogs/flightconfiguration/SelectDeploymentConfigDialog.java b/core/src/net/sf/openrocket/gui/dialogs/flightconfiguration/SelectDeploymentConfigDialog.java index 0257c610d..cb754c156 100644 --- a/core/src/net/sf/openrocket/gui/dialogs/flightconfiguration/SelectDeploymentConfigDialog.java +++ b/core/src/net/sf/openrocket/gui/dialogs/flightconfiguration/SelectDeploymentConfigDialog.java @@ -83,10 +83,8 @@ public class SelectDeploymentConfigDialog extends JDialog { @Override public void actionPerformed(ActionEvent e) { if ( event.getSelectedItem() == DeployEvent.ALTITUDE ) { - delaySpinner.setEnabled(true); altSpinner.setEnabled(true); } else { - delaySpinner.setEnabled(false); altSpinner.setEnabled(false); }