diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-31 00:59:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-31 00:59:41 +0000 |
commit | 08a64e2269b8637483e22f67d127acc567b8c5bd (patch) | |
tree | 7d0d0f98fbf8431c9900395c2c5b7782560e0260 | |
parent | 8a54bead5d8a940aa2a664a49c560d72b5777626 (diff) | |
download | drakx-08a64e2269b8637483e22f67d127acc567b8c5bd.tar drakx-08a64e2269b8637483e22f67d127acc567b8c5bd.tar.gz drakx-08a64e2269b8637483e22f67d127acc567b8c5bd.tar.bz2 drakx-08a64e2269b8637483e22f67d127acc567b8c5bd.tar.xz drakx-08a64e2269b8637483e22f67d127acc567b8c5bd.zip |
graphical layout change
-rw-r--r-- | perl-install/install_gtk.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index d65b07ba9..0f975ee80 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -114,7 +114,7 @@ sub create_steps_window { my $w = bless {}, 'ugtk2'; $w->{rwindow} = $w->{window} = Gtk2::Window->new('toplevel'); - $w->{rwindow}->set_uposition(0, 0); + $w->{rwindow}->set_uposition(0, 100); $w->{rwindow}->set_size_request($::stepswidth, $::stepsheight); $w->{rwindow}->set_name('Steps'); $w->{rwindow}->set_title('skip'); @@ -142,7 +142,7 @@ sub create_logo_window { my $w = bless {}, 'ugtk2'; $w->{rwindow} = $w->{window} = Gtk2::Window->new('toplevel'); - $w->{rwindow}->set_uposition($::stepswidth, 0); + $w->{rwindow}->set_uposition(0, 0); $w->{rwindow}->set_size_request($::logowidth, $::logoheight); $w->{rwindow}->set_name("logo"); $w->{rwindow}->set_title('skip'); @@ -167,7 +167,7 @@ sub init_sizes() { $::live and $::rootheight -= 80; #- ($::rootheight, $::rootwidth) = (min(768, $::rootheight), min(1024, $::rootwidth)); ($::stepswidth, $::stepsheight) = (160, $::rootheight); - ($::logowidth, $::logoheight) = ($::rootwidth - $::stepswidth, 40); + ($::logowidth, $::logoheight) = (500, 40); ($::helpwidth, $::helpheight) = ($::rootwidth - $::stepswidth, 0); ($::windowwidth, $::windowheight) = ($::rootwidth - $::stepswidth, $::rootheight - $::helpheight - $::logoheight); } |