summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install_gtk.pm2
1 files changed, 1 insertions, 1 deletions
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));