diff --git a/changelog.md b/changelog.md index f9d23bec..4e797ed5 100644 --- a/changelog.md +++ b/changelog.md @@ -29,6 +29,7 @@ * **[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 diff --git a/qt_ui/windows/basemenu/base_defenses/QBaseInformation.py b/qt_ui/windows/basemenu/base_defenses/QBaseInformation.py index 3c920080..50ec2f81 100644 --- a/qt_ui/windows/basemenu/base_defenses/QBaseInformation.py +++ b/qt_ui/windows/basemenu/base_defenses/QBaseInformation.py @@ -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)