diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 3a5f5bc36..ad5fd9726 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- fix asterisk in titles + Version 11.26 - 27 August 2008 - better layout in 640x480 (#43231) diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index f49c9db9e..dd3c0af4f 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -710,7 +710,7 @@ sub create_widgets { # add asterisks before titles when there're more than one: my @all_titles = all_title_entries($l); if (1 <= @all_titles) { - ${$_->{val}} = "· " . ${$_->{val}} foreach @all_titles; + ${$_->{val}} = "\x{2022} " . ${$_->{val}} foreach @all_titles; } my $box = create_widgets_block($o, $l, $update, \$ignore); |