about summary refs log tree commit diff stats
path: root/src/tracker_frame.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tracker_frame.cpp')
-rw-r--r--src/tracker_frame.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tracker_frame.cpp b/src/tracker_frame.cpp index 0ab043d..2e7a7d7 100644 --- a/src/tracker_frame.cpp +++ b/src/tracker_frame.cpp
@@ -18,6 +18,7 @@
18#include "ipc_dialog.h" 18#include "ipc_dialog.h"
19#include "ipc_state.h" 19#include "ipc_state.h"
20#include "items_pane.h" 20#include "items_pane.h"
21#include "options_pane.h"
21#include "paintings_pane.h" 22#include "paintings_pane.h"
22#include "settings_dialog.h" 23#include "settings_dialog.h"
23#include "subway_map.h" 24#include "subway_map.h"
@@ -127,6 +128,9 @@ TrackerFrame::TrackerFrame()
127 items_pane_ = new ItemsPane(choicebook); 128 items_pane_ = new ItemsPane(choicebook);
128 choicebook->AddPage(items_pane_, "Items"); 129 choicebook->AddPage(items_pane_, "Items");
129 130
131 options_pane_ = new OptionsPane(choicebook);
132 choicebook->AddPage(options_pane_, "Options");
133
130 paintings_pane_ = new PaintingsPane(choicebook); 134 paintings_pane_ = new PaintingsPane(choicebook);
131 choicebook->AddPage(paintings_pane_, "Paintings"); 135 choicebook->AddPage(paintings_pane_, "Paintings");
132 136
@@ -301,6 +305,7 @@ void TrackerFrame::OnStateReset(wxCommandEvent &event) {
301 tracker_panel_->UpdateIndicators(); 305 tracker_panel_->UpdateIndicators();
302 achievements_pane_->UpdateIndicators(); 306 achievements_pane_->UpdateIndicators();
303 items_pane_->ResetIndicators(); 307 items_pane_->ResetIndicators();
308 options_pane_->OnConnect();
304 paintings_pane_->ResetIndicators(); 309 paintings_pane_->ResetIndicators();
305 subway_map_->OnConnect(); 310 subway_map_->OnConnect();
306 if (panels_panel_ != nullptr) { 311 if (panels_panel_ != nullptr) {