Fix another instance of wxGTK not liking menu icons
This commit is contained in:
parent
95a6fb6ea3
commit
f53c42fac9
|
@ -70,6 +70,14 @@ static void set_wxMenuIcon( wxMenuItem* aMenu, const BITMAP_OPAQUE* aIcon )
|
|||
if( !Pgm().CommonSettings() )
|
||||
return;
|
||||
|
||||
#if defined(__WXGTK__)
|
||||
|
||||
// wxGTK doesn't support this for non-normal menu items
|
||||
if( aMenu->GetKind() != wxITEM_NORMAL )
|
||||
return;
|
||||
|
||||
#endif
|
||||
|
||||
// Retrieve the global applicaton show icon option:
|
||||
bool useImagesInMenus;
|
||||
Pgm().CommonSettings()->Read( USE_ICONS_IN_MENUS_KEY, &useImagesInMenus );
|
||||
|
|
Loading…
Reference in New Issue