diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-06 14:09:02 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-06 14:09:02 -0500 |
commit | 6e7146714e0af2145c8c6cda3da4e2a54b469cb6 (patch) | |
tree | 01e2bbc7100629ff612f47063b2e89aee0ea216b /src/settings_dialog.h | |
parent | 85c02f71f81e5d5d250d4ad3f39edc5394902c99 (diff) | |
download | lingo-ap-tracker-6e7146714e0af2145c8c6cda3da4e2a54b469cb6.tar.gz lingo-ap-tracker-6e7146714e0af2145c8c6cda3da4e2a54b469cb6.tar.bz2 lingo-ap-tracker-6e7146714e0af2145c8c6cda3da4e2a54b469cb6.zip |
Added setting for disabling player position tracking
Diffstat (limited to 'src/settings_dialog.h')
-rw-r--r-- | src/settings_dialog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/settings_dialog.h b/src/settings_dialog.h index d7c1ed3..12f2439 100644 --- a/src/settings_dialog.h +++ b/src/settings_dialog.h | |||
@@ -16,11 +16,13 @@ class SettingsDialog : public wxDialog { | |||
16 | } | 16 | } |
17 | bool GetHybridAreas() const { return hybrid_areas_box_->GetValue(); } | 17 | bool GetHybridAreas() const { return hybrid_areas_box_->GetValue(); } |
18 | bool GetShowHuntPanels() const { return show_hunt_panels_box_->GetValue(); } | 18 | bool GetShowHuntPanels() const { return show_hunt_panels_box_->GetValue(); } |
19 | bool GetTrackPosition() const { return track_position_box_->GetValue(); } | ||
19 | 20 | ||
20 | private: | 21 | private: |
21 | wxCheckBox* should_check_for_updates_box_; | 22 | wxCheckBox* should_check_for_updates_box_; |
22 | wxCheckBox* hybrid_areas_box_; | 23 | wxCheckBox* hybrid_areas_box_; |
23 | wxCheckBox* show_hunt_panels_box_; | 24 | wxCheckBox* show_hunt_panels_box_; |
25 | wxCheckBox* track_position_box_; | ||
24 | }; | 26 | }; |
25 | 27 | ||
26 | #endif /* end of include guard: SETTINGS_DIALOG_H_D8635719 */ | 28 | #endif /* end of include guard: SETTINGS_DIALOG_H_D8635719 */ |