summaryrefslogtreecommitdiff
path: root/wx+/context_menu.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-08-03 08:51:28 -0400
committerB. Stack <bgstack15@gmail.com>2022-08-03 08:51:28 -0400
commit94e0c9205e6049c6b3295145af7fd39156e77543 (patch)
treec36c0f0c5fab7aa60432e9e1d32ba5fdfabeb55e /wx+/context_menu.h
parentMerge branch '11.22' into 'master' (diff)
downloadFreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.tar.gz
FreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.tar.bz2
FreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.zip
add upstream 11.23
Diffstat (limited to 'wx+/context_menu.h')
-rw-r--r--wx+/context_menu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/context_menu.h b/wx+/context_menu.h
index ef11e37b..05dd58b8 100644
--- a/wx+/context_menu.h
+++ b/wx+/context_menu.h
@@ -28,7 +28,7 @@ namespace zen
inline
void setImage(wxMenuItem& menuItem, const wxImage& img)
{
- menuItem.SetBitmap(toBitmapBundle(img));
+ menuItem.SetBitmap(toScaledBitmap(img));
}
bgstack15