Changeset 450:d009a75685e8 for src/mlx/gui
- Timestamp:
- 03/05/13 19:05:56 (12 years ago)
- Branch:
- xplane
- Parents:
-
431:207f92566e4f (diff), 449:7ee0679c217b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/gui.py
r430 r450 493 493 self.reset() 494 494 495 def enableFlightInfo(self ):495 def enableFlightInfo(self, aircraftType): 496 496 """Enable the flight info tab.""" 497 self._flightInfo.enable( )497 self._flightInfo.enable(aircraftType) 498 498 499 499 def cancelFlight(self): -
src/mlx/gui/gui.py
r436 r450 68 68 self._flight = None 69 69 self._simulator = None 70 self._fsType = None 70 71 self._monitoring = False 71 72 … … 205 206 206 207 @property 208 def fsType(self): 209 """Get the flight simulator type.""" 210 return self._fsType 211 212 @property 207 213 def entranceExam(self): 208 214 """Get whether an entrance exam is about to be taken.""" … … 425 431 self._wizard.connected(fsType, descriptor) 426 432 self._reconnecting = False 433 self._fsType = fsType 427 434 self._listenHotkeys() 428 435
Note:
See TracChangeset
for help on using the changeset viewer.