From 4fe70b856f719986ec608532c678e92c6ebf0ff9 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 22 Sep 2008 11:22:56 +0000 Subject: (create_steps_window) no need to create a filler widget: just set vertical position directly --- perl-install/install/gtk.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'perl-install/install/gtk.pm') 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): -- cgit v1.2.1