Changeset 661:765c05b17f7a
- Timestamp:
- 08/08/15 07:42:56 (9 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/checks.py
r644 r661 962 962 return (not flight.config.usingFS2Crew or not state.parking or 963 963 flight.stage!=const.STAGE_TAXIAFTERLAND) and \ 964 not state.antiCollisionLightsOnand \964 state.antiCollisionLightsOn is False and \ 965 965 self.isEngineCondition(state) 966 966 -
src/mlx/gui/monitor.py
r496 r661 375 375 376 376 self._navLightsOn.set_sensitive(aircraftState.navLightsOn is True) 377 self._antiCollisionLightsOn.set_sensitive(aircraftState.antiCollisionLightsOn )377 self._antiCollisionLightsOn.set_sensitive(aircraftState.antiCollisionLightsOn is True) 378 378 self._strobeLightsOn.set_sensitive(aircraftState.strobeLightsOn is True) 379 379
Note:
See TracChangeset
for help on using the changeset viewer.