From 69ca8a627b7353fb64cf23833aedaceb414680fe Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 9 Oct 2009 16:25:51 +0000 Subject: (create_widget) fix displaying arrows --- perl-install/NEWS | 3 +++ perl-install/interactive/gtk.pm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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-//; -- cgit v1.2.1