diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2004-02-20 08:53:31 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2004-02-20 08:53:31 +0000 |
commit | f429b9881d47f6ab882f71ef95e965d32484d37d (patch) | |
tree | 08bbfc08ebbb8e44ce68f51b8ff9b380b5250e72 /perl-install/install_gtk.pm | |
parent | 823b9822f3ffcb02449611e53b33fc161af67707 (diff) | |
download | drakx-f429b9881d47f6ab882f71ef95e965d32484d37d.tar drakx-f429b9881d47f6ab882f71ef95e965d32484d37d.tar.gz drakx-f429b9881d47f6ab882f71ef95e965d32484d37d.tar.bz2 drakx-f429b9881d47f6ab882f71ef95e965d32484d37d.tar.xz drakx-f429b9881d47f6ab882f71ef95e965d32484d37d.zip |
don't force buttons a size related to $::windowwidth since this is no more used to size the main window (fixes missing Next button in vgahi), use a global $::real_windowwidth for sizings related to the main window
Diffstat (limited to 'perl-install/install_gtk.pm')
-rw-r--r-- | perl-install/install_gtk.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index 78eee6bc5..b1eebb006 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -238,6 +238,7 @@ sub init_sizes() { ($::logowidth, $::logoheight) = $::rootwidth <= 640 ? (0, 0) : (500, 40); ($::helpwidth, $::helpheight) = ($::rootwidth - $::stepswidth, $::move && 15); ($::windowwidth, $::windowheight) = ($::rootwidth - $::stepswidth, $::rootheight - $::helpheight - $::logoheight); + ($::real_windowwidth, $::real_windowheight) = (576, 418); $::move and $::windowwidth -= 100; } |