summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/interactive/gtk.pm2
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 0def5c583..12cdd959c 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- drakboot:
+ o fix displaying arrows
+
Version 12.62 - 9 October 2009
- autologin/desktop configuration (shared code):
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-//;