From b947fc6bbcbe16fd89d13b86cc9c2db2c0fa55c9 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 19 Feb 2004 17:30:55 +0000 Subject: the text we give to set_markup should not contain raw "&" (occurs for "Any PS/2 & USB mice") --- perl-install/install_steps_gtk.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'perl-install') diff --git a/perl-install/install_steps_gtk.pm b/perl-install/install_steps_gtk.pm index 259ed9550..6c237f243 100644 --- a/perl-install/install_steps_gtk.pm +++ b/perl-install/install_steps_gtk.pm @@ -654,6 +654,7 @@ sub summary_prompt { $set_entry_labels = sub { foreach (@$l) { my $t = $_->{val}() || '' . N("not configured") . ''; + $t =~ s/&/&/g; $_->{widget}->set_markup($_->{label} . ' - ' . $t); } }; -- cgit v1.2.1