diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 22:11:10 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-18 22:11:10 +0000 |
commit | 0f2f592cbfe90654e983cadd04a218a27e2b5f62 (patch) | |
tree | 55bdd3752ca842ccdee64bf794f700150f109d57 /perl-install/interactive_gtk.pm | |
parent | 41242f22137bf15057dbaf615cf299e9d347983a (diff) | |
download | drakx-0f2f592cbfe90654e983cadd04a218a27e2b5f62.tar drakx-0f2f592cbfe90654e983cadd04a218a27e2b5f62.tar.gz drakx-0f2f592cbfe90654e983cadd04a218a27e2b5f62.tar.bz2 drakx-0f2f592cbfe90654e983cadd04a218a27e2b5f62.tar.xz drakx-0f2f592cbfe90654e983cadd04a218a27e2b5f62.zip |
fix bug in box's height use
Diffstat (limited to 'perl-install/interactive_gtk.pm')
-rw-r--r-- | perl-install/interactive_gtk.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/interactive_gtk.pm b/perl-install/interactive_gtk.pm index be534eaac..f7e5020d9 100644 --- a/perl-install/interactive_gtk.pm +++ b/perl-install/interactive_gtk.pm @@ -493,7 +493,7 @@ sub ask_fromW { my $width = max(250, $max_width * 5); $mainw->{box_width} = min($::windowheight * 0.7, $width); - my $height = max(200, my_gtk::n_line_size($mainw->{box_size}, 'various', $mainw->{rwindow})); + my $height = max(200, my_gtk::n_line_size($always_total_size, 'various', $mainw->{rwindow})); $mainw->{box_height} = min($::windowheight * 0.7, $height); my $has = $width > $mainw->{box_width} || $height > $mainw->{box_height}; |