From dfddd07b8b5cbff7c09103a694aed40bda254a2d Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 13 Mar 2025 12:47:54 -0400 Subject: Obsolete savefile reader + IPC solves Now, panel solve state is all read from the sync fields in datastorage. The "show hunt panels" field in settings is now a radio box, and you can choose to show all panels. --- src/tracker_config.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/tracker_config.h') diff --git a/src/tracker_config.h b/src/tracker_config.h index 4e851dc..df4105d 100644 --- a/src/tracker_config.h +++ b/src/tracker_config.h @@ -23,14 +23,20 @@ class TrackerConfig { void Save(); + enum VisiblePanels { + kLOCATIONS_ONLY, + kHUNT_PANELS, + kALL_PANELS, + }; + ConnectionDetails connection_details; bool asked_to_check_for_updates = false; bool should_check_for_updates = false; bool hybrid_areas = false; - bool show_hunt_panels = false; std::deque connection_history; std::string ipc_address; bool track_position = true; + VisiblePanels visible_panels = kLOCATIONS_ONLY; private: std::string filename_; -- cgit 1.4.1