diff --git a/changelog.md b/changelog.md index 0b0631fa..5d617419 100644 --- a/changelog.md +++ b/changelog.md @@ -16,6 +16,7 @@ Saves from 8.0.0 are compatible with 8.1.0 ## Fixes +* **[Campaign]** Fixed liveries for premade squadrons all being off-by-one. * **[UI]** Fixed numbering of waypoints in the map and flight dialog (first waypoint is now 0 rather than 1). # 8.0.0 diff --git a/qt_ui/widgets/combos/liveryselector.py b/qt_ui/widgets/combos/liveryselector.py index 3538d5c8..b1a4c975 100644 --- a/qt_ui/widgets/combos/liveryselector.py +++ b/qt_ui/widgets/combos/liveryselector.py @@ -24,7 +24,8 @@ class LiverySelector(QComboBox): for idx, livery in enumerate( squadron.aircraft.dcs_unit_type.iter_liveries_for_country( dcs.countries.get_by_name(squadron.country) - ) + ), + 1, # First entry is "Default". ): self.addItem(livery.name, livery) if squadron.livery == livery.id: