From dd17cc234f6fc943418e0c36211af23d2056b775 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 28 Aug 2008 10:11:58 +0000 Subject: (create_widgets) fix off by one error in title count --- perl-install/interactive/gtk.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/interactive') diff --git a/perl-install/interactive/gtk.pm b/perl-install/interactive/gtk.pm index dd3c0af4f..abb88c0d4 100644 --- a/perl-install/interactive/gtk.pm +++ b/perl-install/interactive/gtk.pm @@ -709,7 +709,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) { + if (2 <= @all_titles) { ${$_->{val}} = "\x{2022} " . ${$_->{val}} foreach @all_titles; } -- cgit v1.2.1