diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-22 11:22:56 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-22 11:22:56 +0000 |
commit | 4fe70b856f719986ec608532c678e92c6ebf0ff9 (patch) | |
tree | 2f1636a1dc4e1dc4de39350822e50e2f646c1023 | |
parent | 415dfc954d951b8b3a0c40e2f45f51adbc04490a (diff) | |
download | drakx-4fe70b856f719986ec608532c678e92c6ebf0ff9.tar drakx-4fe70b856f719986ec608532c678e92c6ebf0ff9.tar.gz drakx-4fe70b856f719986ec608532c678e92c6ebf0ff9.tar.bz2 drakx-4fe70b856f719986ec608532c678e92c6ebf0ff9.tar.xz drakx-4fe70b856f719986ec608532c678e92c6ebf0ff9.zip |
(create_steps_window) no need to create a filler widget: just set
vertical position directly
-rw-r--r-- | perl-install/install/gtk.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index a738c3ca1..3f65bc648 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -120,7 +120,6 @@ sub create_steps_window { }; my @l = ( - gtknew('HBox', height => 145), $category->(N("Installation")) ); foreach (grep { !eval $o->{steps}{$_}{hidden} } @{$o->{orderedSteps}}) { @@ -139,7 +138,7 @@ sub create_steps_window { my $height = 600; $o->{steps_widget} = gtknew('Fixed', widget_name => 'Steps', pixbuf_file => 'left-background', - has_window => 1, x => 0, y => 0, height => $height, width => $::stepswidth, # -1 + has_window => 1, x => 0, y => 145, height => $height, width => $::stepswidth, # -1 child => gtknew('VBox', spacing => 6, width => ($::stepswidth - $offset), children_tight => \@l)); # prevent logo to be tiled (do mosazic style rendering): |