diff options
| -rw-r--r-- | ao-tools/altosui/AltosUI.java | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/ao-tools/altosui/AltosUI.java b/ao-tools/altosui/AltosUI.java index 7befe778..66c75487 100644 --- a/ao-tools/altosui/AltosUI.java +++ b/ao-tools/altosui/AltosUI.java @@ -52,7 +52,7 @@ class AltosFlightStatusTableModel extends AbstractTableModel {  	public void setValueAt(Object value, int col) {  		data[col] = value; -		fireTableCellUpdated(0, col); +		fireTableCellUpdated(1, col);  	}  	public void setValueAt(Object value, int row, int col) { @@ -273,7 +273,7 @@ public class AltosUI extends JFrame {  		if (state.npad >= MIN_PAD_SAMPLES)  			info_add_row(0, "Ground state", "%s", "ready");  		else -			info_add_row(0, "Ground state", "waiting for gps (%d)", +			info_add_row(0, "Ground state", "wait (%d)",  				     MIN_PAD_SAMPLES - state.npad);  		info_add_row(0, "Rocket state", "%s", state.data.state);  		info_add_row(0, "Callsign", "%s", state.data.callsign); | 
