diff options
-rw-r--r-- | perl-install/install/NEWS | 1 | ||||
-rw-r--r-- | perl-install/install/gtk.pm | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 57ae1fd69..2152c4686 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- better layout in 640x480 (#43231) - fix "probe floppies only once" (#43216) Version 11.25 - 25 August 2008 diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index 99e2ede7f..beaadad9c 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -109,8 +109,6 @@ my %steps; sub create_steps_window { my ($o) = @_; - return if $::stepswidth == 0; - $o->{steps_window} and $o->{steps_window}->destroy; $steps{$_} ||= gtknew('Pixbuf', file => "steps_$_") foreach qw(on off done); @@ -177,6 +175,7 @@ sub create_steps_window { gtknew('HBox', children => [ + if_($::stepswidth != 0, 0, $o->{steps_widget}), 0, $o->{steps_widget}, 1, gtknew('Label', width => -1, height => -1), ], |