diff options
Diffstat (limited to 'perl-install/interactive')
-rw-r--r-- | perl-install/interactive/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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); |