diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 08:43:17 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-11 08:43:17 +0000 |
commit | 8436b5fa50eb66d801e550f57047939693dbd894 (patch) | |
tree | 399e6c0a758ee69319fd3bbe63ffb21385143247 | |
parent | a6f333208a377a318b63ceb1f856fb8b876798d9 (diff) | |
download | drakx-8436b5fa50eb66d801e550f57047939693dbd894.tar drakx-8436b5fa50eb66d801e550f57047939693dbd894.tar.gz drakx-8436b5fa50eb66d801e550f57047939693dbd894.tar.bz2 drakx-8436b5fa50eb66d801e550f57047939693dbd894.tar.xz drakx-8436b5fa50eb66d801e550f57047939693dbd894.zip |
help size doesn't need anything special anymore
-rw-r--r-- | perl-install/install_gtk.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perl-install/install_gtk.pm b/perl-install/install_gtk.pm index dbcebdbfb..3a61df412 100644 --- a/perl-install/install_gtk.pm +++ b/perl-install/install_gtk.pm @@ -212,7 +212,6 @@ sub init_sizes() { #- ($::rootheight, $::rootwidth) = (min(768, $::rootheight), min(1024, $::rootwidth)); $::stepswidth = $::rootwidth <= 640 ? 0 : 200 if !$::move; ($::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; |