From 46595bbaac3603a7b7fe7387df6ad9b913b00be6 Mon Sep 17 00:00:00 2001 From: Brendan Date: Wed, 18 Mar 2015 22:23:54 -0600 Subject: [PATCH] changes what connectPanel actionListener is added to --- GroundStation/v2/GroundStation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GroundStation/v2/GroundStation.java b/GroundStation/v2/GroundStation.java index 8ec18db..a8e1497 100644 --- a/GroundStation/v2/GroundStation.java +++ b/GroundStation/v2/GroundStation.java @@ -50,7 +50,7 @@ class GroundStation implements ActionListener { controllerPanel = new DisplayController( receiveContent ); tabbedPane.add( controllerPanel, "Controller" ); - connectPanel.addActionListener( controllerPanel ); + receiveContent.addActionListener( controllerPanel ); motorTestPanel = new MotorTestPanel( sendContent ); motorTestPanel.setEnabled( false );