From ca09a25a2290e8d2bf69cd17a9492737944cab01 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 26 Aug 2005 13:58:33 +0000 Subject: (create_steps_window) leave around references on text widget and on unmarked text for steps --- perl-install/install_gtk.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install_gtk.pm') diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 5cc8ab7ae..ce7661f13 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -140,7 +140,8 @@ sub create_steps_window { } my $img = gtknew('Image', file => 'steps_off.png'); $steps{steps}{$_}{img} = $img; - push @l, gtknew('HBox', spacing => 7, children_tight => [ '', '', $img, translate($o->{steps}{$_}{text}) ]); + $steps{steps}{$_}{raw_text} = translate($o->{steps}{$_}{text}); + push @l, gtknew('HBox', spacing => 7, children_tight => [ '', '', $img, $steps{steps}{$_}{text} = gtknew('Label', text => $steps{steps}{$_}{raw_text}) ]); } my $offset = 20; -- cgit v1.2.1