From dacbe8e3fbda85f7c2e7e7b660795f2a080a9d25 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 13 Mar 2025 11:55:55 -0400 Subject: Use sync fields for hunt panels --- src/tracker_frame.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/tracker_frame.cpp') diff --git a/src/tracker_frame.cpp b/src/tracker_frame.cpp index fa68582..84017a3 100644 --- a/src/tracker_frame.cpp +++ b/src/tracker_frame.cpp @@ -9,6 +9,7 @@ #include #include +#include #include #include @@ -358,10 +359,17 @@ void TrackerFrame::OnStateChanged(StateChangedEvent &event) { return; } + + bool hunt_panels = false; + if (GetTrackerConfig().show_hunt_panels) { + hunt_panels = std::any_of( + state.panels.begin(), state.panels.end(), [](int solve_index) { + return GD_GetPanel(GD_GetPanelBySolveIndex(solve_index)).hunt; + }); + } if (!state.items.empty() || !state.paintings.empty() || - state.cleared_locations || - (state.hunt_panels && GetTrackerConfig().show_hunt_panels)) { + state.cleared_locations || hunt_panels) { // TODO: The only real reason to reset tracker_panel during an active // connection is if the hunt panels setting changes. If we remove hunt // panels later, we can get rid of this. -- cgit 1.4.1