summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive/gtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/interactive/gtk.pm')
-rw-r--r--perl-install/interactive/gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm
index 6cfedf766..cb4f8e9c3 100644
--- a/perl-install/interactive/gtk.pm
+++ b/perl-install/interactive/gtk.pm
@@ -456,7 +456,7 @@ sub create_widget {
push @buttons, 'gtk-go-' . $_ if $actions->{$_};
}
@buttons = map {
- my $button = /^gtk-/ ? gtknew('Button', image => gtknew('Image', stock => $_))
+ my $button = /^gtk-/ ? gtknew('Button', image => gtknew('Image', stock => lc($_)))
: Gtk2::Button->new(translate($_));
my $kind = $_;
$kind =~ s/^gtk-go-//;