diff options
| author | Keith Packard <keithp@keithp.com> | 2012-03-28 00:49:29 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-03-28 00:49:29 -0700 | 
| commit | bdfcc9112c41c494de23594963980a730b625cc4 (patch) | |
| tree | 6180a6f9a4408f810f57aa4c6d2a8b5152ce2c2a | |
| parent | cf1e95810559584705d0b8a787375938c68e07c6 (diff) | |
altosui: Disable launch controller button
The launch controller should just be a separate program.
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | altosui/AltosUI.java | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 75a12ece..6993abab 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -210,12 +210,12 @@ public class AltosUI extends AltosFrame {  			});  		b.setToolTipText("Check flight readiness of altimeter in idle mode"); -		b = addButton(3, 2, "Launch Controller"); -		b.addActionListener(new ActionListener() { -				public void actionPerformed(ActionEvent e) { -					LaunchController(); -				} -			}); +//		b = addButton(3, 2, "Launch Controller"); +//		b.addActionListener(new ActionListener() { +//				public void actionPerformed(ActionEvent e) { +//					LaunchController(); +//				} +//			});  		b = addButton(4, 2, "Quit");  		b.addActionListener(new ActionListener() { | 
