Ignore:
Timestamp:
09/19/23 11:04:56 (7 months ago)
Author:
István Váradi <ivaradi@…>
Branch:
python3
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

The flight contains if its departure gate is taxi-through

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/gui.py

    r1099 r1106  
    10601060        self._flight.aircraft._checkers.append(self)
    10611061
     1062        self._flight.departureGateIsTaxiThrough = self._wizard.isDepartureGateTaxiThrough
     1063        print("The departure gate is '%s', and it is %staxi-through" %
     1064              (self._wizard._departureGate,
     1065               "" if self._flight.departureGateIsTaxiThrough else "not "))
     1066
    10621067        if self._simulator is None:
    10631068            self._simulator = fs.createSimulator(simulatorType, self)
Note: See TracChangeset for help on using the changeset viewer.