From 30f9e78cb30178834c420106c9f515c8358c4dbf Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Mon, 10 Mar 2025 13:05:10 -0400 Subject: Optimize ReportPopup refresh slightly It no longer resizes the window or vanishes if it is open during a refresh, and instead just redraws the image. --- src/report_popup.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/report_popup.h') diff --git a/src/report_popup.h b/src/report_popup.h index 2da9b73..bbb0bef 100644 --- a/src/report_popup.h +++ b/src/report_popup.h @@ -15,6 +15,7 @@ class ReportPopup : public wxScrolledCanvas { void Reset(); + void ResetIndicators(); void UpdateIndicators(); private: @@ -28,6 +29,9 @@ class ReportPopup : public wxScrolledCanvas { const wxBitmap* unchecked_eye_; const wxBitmap* checked_eye_; + int full_width_ = 0; + int full_height_ = 0; + wxBitmap rendered_; }; -- cgit 1.4.1