diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-07-24 17:30:49 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-07-24 17:30:49 +0000 |
commit | e366cd580005d0a964c7d10f71bb45ee73be7f94 (patch) | |
tree | f794de42e54c2cedf14aef60e3bc27dfa58e1a10 | |
parent | 5a380298d02673eb75aa0d4e4808dd34fa91f95f (diff) | |
download | drakx-e366cd580005d0a964c7d10f71bb45ee73be7f94.tar drakx-e366cd580005d0a964c7d10f71bb45ee73be7f94.tar.gz drakx-e366cd580005d0a964c7d10f71bb45ee73be7f94.tar.bz2 drakx-e366cd580005d0a964c7d10f71bb45ee73be7f94.tar.xz drakx-e366cd580005d0a964c7d10f71bb45ee73be7f94.zip |
(create_steps_window) put left window at top now that we do not have a
separate logo window anymore
-rw-r--r-- | perl-install/install/gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install/gtk.pm b/perl-install/install/gtk.pm index e076b5075..c415dc8dc 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -133,7 +133,7 @@ sub create_steps_window { my $offset = 20; $o->{steps_window} = gtknew('Window', width => ($::stepswidth - $offset), widget_name => 'Steps', - position => [ lang::text_direction_rtl() ? $::rootwidth - $::stepswidth : $offset, 150 ], + position => [ lang::text_direction_rtl() ? $::rootwidth - $::stepswidth : $offset, 0 ], child => gtknew('VBox', spacing => 6, children_tight => \@l)); $o->{steps_window}->show; } |