From ffea7a5c07e667d4640d0bc65974a1055259d060 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 21 Jan 2003 18:58:25 +0000 Subject: small enhancement to know which step is currently done --- perl-install/install_gtk.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 78bf2dd82..fd5caa65f 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -126,7 +126,7 @@ sub create_steps_window { push @l, $s, N_("System configuration"); $s = ''; } - $s .= "- " . translate($o->{steps}{$_}{text}) . "\n"; + $s .= ($o->{steps}{$_}{done} ? '+' : '-') . ' ' . translate($o->{steps}{$_}{text}) . "\n"; } gtkadd($w->{window}, gtkpack__(Gtk2::VBox->new(0,15), @l, $s)); -- cgit v1.2.1