summaryrefslogtreecommitdiffstats
path: root/perl-install/my_gtk.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/my_gtk.pm')
-rw-r--r--perl-install/my_gtk.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/my_gtk.pm b/perl-install/my_gtk.pm
index 1d24ab95a..9de8d0bb5 100644
--- a/perl-install/my_gtk.pm
+++ b/perl-install/my_gtk.pm
@@ -347,7 +347,7 @@ sub create_okcancel {
sub create_box_with_title($@) {
my $o = shift;
- $o->{box_size} = map { split "\n" } @_;
+ $o->{box_size} = sum(map { round(length($_) / 60 + 0.5) } map { split "\n" } @_);
$o->{box} = new Gtk::VBox(0,0);
if (@_ <= 2 && $o->{box_size} > 4) {
my $font = $o->{box}->style->font;