Enable menu icons on older Windows and Linux Wx

This commit is contained in:
Alessandro Ranellucci 2015-05-26 11:27:07 +02:00
parent aa8b6afe8b
commit 310212ed30

View file

@ -725,7 +725,8 @@ sub _append_menu_item {
sub _set_menu_item_icon {
my ($self, $menuItem, $icon) = @_;
if ($icon && $Wx::VERSION >= 0.9927) {
# SetBitmap was not available on OS X before Wx 0.9927
if ($icon && $menuItem->can('SetBitmap')) {
$menuItem->SetBitmap(Wx::Bitmap->new("$Slic3r::var/$icon", wxBITMAP_TYPE_PNG));
}
}