Allow managing disbanded sites in CPs.

Fixes https://github.com/Khopa/dcs_liberation/issues/679
This commit is contained in:
Dan Albert 2020-12-27 13:07:45 -08:00
parent 3a9f585b6b
commit 317a882386
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ Saves from 2.3 are not compatible with 2.4.
* **[Mission Generator]** Empty navy groups will no longer be generated
* **[Flight Planner]** Fixed not being able to plan packages against opfor carriers
* **[UI]** Repaired SAMs no longer show as dead.
* **[UI]** Fixed not being able to manage a disbanded site after disbanding and closing the base menu.
# 2.3.2

View File

@ -30,7 +30,7 @@ class QBaseInformation(QFrame):
scroll_content.setLayout(task_box_layout)
for g in self.cp.ground_objects:
if g.airbase_group and len(g.groups) > 0:
if g.airbase_group:
group_info = QBaseDefenseGroupInfo(self.cp, g, self.game)
task_box_layout.addWidget(group_info)