From 55d44a1b5c6e4d2f45d365fe7680aa619c831506 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 18 Apr 2000 14:38:41 +0000 Subject: no_comment --- perl-install/my_gtk.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'perl-install/my_gtk.pm') diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm index 72dab6b11..65517c8a0 100644 --- a/perl-install/my_gtk.pm +++ b/perl-install/my_gtk.pm @@ -203,9 +203,10 @@ sub create_okcancel($;$$) { sub create_box_with_title($@) { my $o = shift; - $o->{box} = (@_ <= 2 && (map { split "\n" } @_) > 6) ? + my $nb_lines = map { split "\n" } @_; + $o->{box} = (@_ <= 2 && $nb_lines > 3) ? gtkpack(new Gtk::VBox(0,0), - gtkset_usize(createScrolledWindow(gtktext_insert(new Gtk::Text, join "\n", @_)), 400, 250)) : + gtkset_usize(createScrolledWindow(gtktext_insert(new Gtk::Text, join "\n", @_)), 400, min(250, $nb_lines * 20))) : gtkpack_(new Gtk::VBox(0,0), (map { my $w = ref $_ ? $_ : new Gtk::Label($_); -- cgit v1.2.1