diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-07 22:20:13 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-03-07 22:20:13 -0500 |
commit | b06f534cd0023d753932b4932c95da5d4854b804 (patch) | |
tree | 44e4e9b175581f89e1fe0967f6d5fb1fb7da8d25 /src | |
parent | adbc2622db49ef90b48392cb9db8ee8d0ed5d704 (diff) | |
download | lingo-ap-tracker-b06f534cd0023d753932b4932c95da5d4854b804.tar.gz lingo-ap-tracker-b06f534cd0023d753932b4932c95da5d4854b804.tar.bz2 lingo-ap-tracker-b06f534cd0023d753932b4932c95da5d4854b804.zip |
DPI changed handler has to call skip
Diffstat (limited to 'src')
-rw-r--r-- | src/area_popup.cpp | 2 | ||||
-rw-r--r-- | src/report_popup.cpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/area_popup.cpp b/src/area_popup.cpp index 2ba9586..9c7406b 100644 --- a/src/area_popup.cpp +++ b/src/area_popup.cpp | |||
@@ -180,6 +180,8 @@ void AreaPopup::OnPaint(wxPaintEvent& event) { | |||
180 | void AreaPopup::OnDPIChanged(wxDPIChangedEvent& event) { | 180 | void AreaPopup::OnDPIChanged(wxDPIChangedEvent& event) { |
181 | LoadIcons(); | 181 | LoadIcons(); |
182 | UpdateIndicators(); | 182 | UpdateIndicators(); |
183 | |||
184 | event.Skip(); | ||
183 | } | 185 | } |
184 | 186 | ||
185 | void AreaPopup::LoadIcons() { | 187 | void AreaPopup::LoadIcons() { |
diff --git a/src/report_popup.cpp b/src/report_popup.cpp index cf5b086..674eea0 100644 --- a/src/report_popup.cpp +++ b/src/report_popup.cpp | |||
@@ -102,6 +102,8 @@ void ReportPopup::OnPaint(wxPaintEvent& event) { | |||
102 | void ReportPopup::OnDPIChanged(wxDPIChangedEvent& event) { | 102 | void ReportPopup::OnDPIChanged(wxDPIChangedEvent& event) { |
103 | LoadIcons(); | 103 | LoadIcons(); |
104 | UpdateIndicators(); | 104 | UpdateIndicators(); |
105 | |||
106 | event.Skip(); | ||
105 | } | 107 | } |
106 | 108 | ||
107 | void ReportPopup::LoadIcons() { | 109 | void ReportPopup::LoadIcons() { |