Changeset 1184:c2100c410a84 for src/mlx/gui
- Timestamp:
- 04/30/25 15:05:04 (3 days ago)
- Branch:
- python3
- Phase:
- public
- Location:
- src/mlx/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/flightlist.py
r1033 r1184 246 246 type.""" 247 247 return tailNumber + \ 248 " (" + const. icaoCodes[bookedFlight.aircraftType] + ")"248 " (" + const.extendedICAOCodes[bookedFlight.aircraftType] + ")" 249 249 250 250 def _getAcft(tailNumber, bookedFlight): -
src/mlx/gui/pirep.py
r1079 r1184 323 323 self._callsign.set_text(bookedFlight.callsign) 324 324 self._tailNumber.set_text(bookedFlight.tailNumber) 325 aircraftType = xstr("aircraft_" + icaoCodes[bookedFlight.aircraftType].lower())325 aircraftType = xstr("aircraft_" + extendedICAOCodes[bookedFlight.aircraftType].lower()) 326 326 self._aircraftType.set_text(aircraftType) 327 327 … … 888 888 self._callsign.set_text(bookedFlight.callsign) 889 889 self._tailNumber.set_text(bookedFlight.tailNumber) 890 aircraftType = xstr("aircraft_" + icaoCodes[bookedFlight.aircraftType].lower())890 aircraftType = xstr("aircraft_" + extendedICAOCodes[bookedFlight.aircraftType].lower()) 891 891 self._aircraftType.set_text(aircraftType) 892 892
Note:
See TracChangeset
for help on using the changeset viewer.