diff --git a/software/ros_packages/ground_station/src/Framework/NavigationSystems/WaypointsCoordinator.py b/software/ros_packages/ground_station/src/Framework/NavigationSystems/WaypointsCoordinator.py index 5b4833b..72f6b93 100644 --- a/software/ros_packages/ground_station/src/Framework/NavigationSystems/WaypointsCoordinator.py +++ b/software/ros_packages/ground_station/src/Framework/NavigationSystems/WaypointsCoordinator.py @@ -79,7 +79,7 @@ class WaypointsCoordinator(QtCore.QThread): def update_manual_entry(self, name, lat, lng, table): print name, lat, lng, table - self.name_edit_label.setDisable(table+1 % 2) + self.name_edit_label.setEnabled(bool(table)) self.name_edit_label.setText(name) self.latitude_label.setValue(lat) self.longitude_label.setValue(lng)