diff options
-rw-r--r-- | perl-install/mygtk2.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 419861ae0..cfe592b06 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -330,6 +330,8 @@ sub _gtk__Image { if (!$w) { $w = Gtk2::Image->new; $w->{format} = delete $opts->{format} if exists $opts->{format}; + + $w->set_from_stock(delete $opts->{stock}, 'button') if exists $opts->{stock}; $w->{options} = { flip => delete $opts->{flip} }; |