From 8dfd96bfafa9a7d6405275c0652e9b4977092127 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 6 Apr 2025 17:46:46 -0400 Subject: Properly handle "show all panels" with postgame disabled --- src/area_popup.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/area_popup.cpp') diff --git a/src/area_popup.cpp b/src/area_popup.cpp index 8ec4dd1..c95e492 100644 --- a/src/area_popup.cpp +++ b/src/area_popup.cpp @@ -50,11 +50,8 @@ void AreaPopup::ResetIndicators() { for (int section_id = 0; section_id < map_area.locations.size(); section_id++) { const Location& location = map_area.locations.at(section_id); - if (IsLocationPostgame(location.ap_location_id)) { - continue; - } - - if (!AP_IsLocationVisible(location.classification) && + if ((!AP_IsLocationVisible(location.classification) || + IsLocationPostgame(location.ap_location_id)) && !(location.hunt && GetTrackerConfig().visible_panels == TrackerConfig::kHUNT_PANELS) && !(location.single_panel && -- cgit 1.4.1