diff options
author | B. Stack <bgstack15@gmail.com> | 2022-08-03 08:51:28 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-08-03 08:51:28 -0400 |
commit | 94e0c9205e6049c6b3295145af7fd39156e77543 (patch) | |
tree | c36c0f0c5fab7aa60432e9e1d32ba5fdfabeb55e /wx+/bitmap_button.h | |
parent | Merge branch '11.22' into 'master' (diff) | |
download | FreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.tar.gz FreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.tar.bz2 FreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.zip |
add upstream 11.23
Diffstat (limited to 'wx+/bitmap_button.h')
-rw-r--r-- | wx+/bitmap_button.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wx+/bitmap_button.h b/wx+/bitmap_button.h index d701e64c..70f161d2 100644 --- a/wx+/bitmap_button.h +++ b/wx+/bitmap_button.h @@ -85,18 +85,18 @@ void setImage(wxAnyButton& button, const wxImage& img) } - button.SetBitmapLabel(toBitmapBundle(img)); + button.SetBitmapLabel(toScaledBitmap(img)); //wxWidgets excels at screwing up consistently once again: //the first call to SetBitmapLabel() *implicitly* sets the disabled bitmap, too, subsequent calls, DON'T! - button.SetBitmapDisabled(toBitmapBundle(img.ConvertToDisabled())); //inefficiency: wxBitmap::ConvertToDisabled() implicitly converts to wxImage! + button.SetBitmapDisabled(toScaledBitmap(img.ConvertToDisabled())); //inefficiency: wxBitmap::ConvertToDisabled() implicitly converts to wxImage! } inline void setImage(wxStaticBitmap& staticBmp, const wxImage& img) { - staticBmp.SetBitmap(toBitmapBundle(img)); + staticBmp.SetBitmap(toScaledBitmap(img)); } |