summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2009-10-09 16:25:51 +0000
committerThierry Vignaud <tv@mandriva.org>2009-10-09 16:25:51 +0000
commit69ca8a627b7353fb64cf23833aedaceb414680fe (patch)
tree5f0f46344f04fd258dd2bf9de11848878167f80f
parent7e41869ce16425aaf503b45f15d22c1113fe6665 (diff)
downloaddrakx-69ca8a627b7353fb64cf23833aedaceb414680fe.tar
drakx-69ca8a627b7353fb64cf23833aedaceb414680fe.tar.gz
drakx-69ca8a627b7353fb64cf23833aedaceb414680fe.tar.bz2
drakx-69ca8a627b7353fb64cf23833aedaceb414680fe.tar.xz
drakx-69ca8a627b7353fb64cf23833aedaceb414680fe.zip
(create_widget) fix displaying arrows
-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-//;