summaryrefslogtreecommitdiffstats
path: root/perl-install/install/gtk.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-07-29 13:06:25 +0000
committerThierry Vignaud <tv@mandriva.org>2008-07-29 13:06:25 +0000
commitea5bc17bc526f94904e37849e1c82c98b9026b6e (patch)
treee627a1cf135357df350088ec016ab37078a09a41 /perl-install/install/gtk.pm
parent2704cd9b6ea074388947c18a35ea6f9c6c76caf5 (diff)
downloaddrakx-backup-do-not-use-ea5bc17bc526f94904e37849e1c82c98b9026b6e.tar
drakx-backup-do-not-use-ea5bc17bc526f94904e37849e1c82c98b9026b6e.tar.gz
drakx-backup-do-not-use-ea5bc17bc526f94904e37849e1c82c98b9026b6e.tar.bz2
drakx-backup-do-not-use-ea5bc17bc526f94904e37849e1c82c98b9026b6e.tar.xz
drakx-backup-do-not-use-ea5bc17bc526f94904e37849e1c82c98b9026b6e.zip
(update_steps_position) stop setting bold and italic for current step name ;
stop restoring previous step title font since we do not set a specific font for current step title
Diffstat (limited to 'perl-install/install/gtk.pm')
-rw-r--r--perl-install/install/gtk.pm7
1 files changed, 0 insertions, 7 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm
index e4b2f24c5..cdbd9062c 100644
--- a/perl-install/install/gtk.pm
+++ b/perl-install/install/gtk.pm
@@ -147,19 +147,12 @@ sub create_steps_window {
sub update_steps_position {
my ($o) = @_;
return if !$steps{steps};
- my $last_step;
foreach (@{$o->{orderedSteps}}) {
exists $steps{steps}{$_} or next;
if ($o->{steps}{$_}{entered} && !$o->{steps}{$_}{done}) {
$steps{steps}{$_}{img}->set_from_pixbuf($steps{on});
- $steps{steps}{$_}{text}->set_markup('<b><i>' . $steps{steps}{$_}{raw_text} . '</i></b>');
- if ($last_step) {
- $steps{steps}{$last_step}{img}->set_from_pixbuf($steps{done});
- $steps{steps}{$last_step}{text}->set_markup('<b>' . $steps{steps}{$last_step}{raw_text} . '</b>');
- }
return;
}
- $last_step = $_;
}
mygtk2::flush(); #- for auto_installs which never go through the Gtk2 main loop
}