diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-05-19 12:38:34 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-05-19 12:38:34 -0400 |
commit | d3e2d9518403eb89eb150fa2158966c3483d5339 (patch) | |
tree | 461dd46a1f25bc45000bb029dc2901ea0b1f3934 /src/subway_map.cpp | |
parent | 983f01cb8a2eaecd162e5734de88c461ef197b34 (diff) | |
download | lingo-ap-tracker-d3e2d9518403eb89eb150fa2158966c3483d5339.tar.gz lingo-ap-tracker-d3e2d9518403eb89eb150fa2158966c3483d5339.tar.bz2 lingo-ap-tracker-d3e2d9518403eb89eb150fa2158966c3483d5339.zip |
Swap checked/unchecked eye for subway map
Diffstat (limited to 'src/subway_map.cpp')
-rw-r--r-- | src/subway_map.cpp | 2 |
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 | ||