about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/subway_map.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subway_map.cpp b/src/subway_map.cpp index 69bf51b..9175514 100644 --- a/src/subway_map.cpp +++ b/src/subway_map.cpp
@@ -257,7 +257,7 @@ void SubwayMap::OnPaint(wxPaintEvent &event) {
257 int cur_height = 10; 257 int cur_height = 10;
258 258
259 for (const auto &[text, obtained] : report) { 259 for (const auto &[text, obtained] : report) {
260 wxBitmap *eye_ptr = obtained ? &unchecked_eye_ : &checked_eye_; 260 wxBitmap *eye_ptr = obtained ? &checked_eye_ : &unchecked_eye_;
261 261
262 dc.DrawBitmap(*eye_ptr, popup_pos + wxPoint{10, cur_height}); 262 dc.DrawBitmap(*eye_ptr, popup_pos + wxPoint{10, cur_height});
263 263