diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-08-19 14:13:37 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-08-19 14:13:37 +0000 |
commit | 04408433cf1514ceb2e3e6a45d576af5f293a57a (patch) | |
tree | 1119859cf68daa51e7bf49ee65e8b19978ab5fe8 /perl-install/install/gtk.pm | |
parent | 96a9930d816a60b3c4453c64e6ac24d0083def6f (diff) | |
download | drakx-04408433cf1514ceb2e3e6a45d576af5f293a57a.tar drakx-04408433cf1514ceb2e3e6a45d576af5f293a57a.tar.gz drakx-04408433cf1514ceb2e3e6a45d576af5f293a57a.tar.bz2 drakx-04408433cf1514ceb2e3e6a45d576af5f293a57a.tar.xz drakx-04408433cf1514ceb2e3e6a45d576af5f293a57a.zip |
(init_sizes) $::helpheight is unused for _years_
Diffstat (limited to 'perl-install/install/gtk.pm')
-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 ee677005d..d541ffbbf 100644 --- a/perl-install/install/gtk.pm +++ b/perl-install/install/gtk.pm @@ -240,7 +240,7 @@ sub init_sizes { ($::rootwidth, $::rootheight) = (Gtk2::Gdk->screen_width, Gtk2::Gdk->screen_height); $::stepswidth = $::rootwidth <= 640 ? 0 : 196; ($::logowidth, $::logoheight) = $::rootwidth <= 640 ? (0, 0) : (800, 75); - ($o->{windowwidth}, $o->{windowheight}) = ($::rootwidth - $::stepswidth, $::rootheight - $::helpheight - $::logoheight); + ($o->{windowwidth}, $o->{windowheight}) = ($::rootwidth - $::stepswidth, $::rootheight - $::logoheight); ($::real_windowwidth, $::real_windowheight) = (576, 418); } |