From 3b5dc7b68b53ea153b9716f9b85c3b6dc3a71574 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Thu, 25 Feb 2016 16:38:41 +0100 Subject: [PATCH] =?utf8?q?PDF::Table:=20Rahmen=20bei=20umgebrochenen=20Zei?= =?utf8?q?len=20in=20der=20korrekten=20L=C3=A4nge=20zeichnen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- modules/override/PDF/Table.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/override/PDF/Table.pm b/modules/override/PDF/Table.pm index 57372487c..0dc7e7d36 100755 --- a/modules/override/PDF/Table.pm +++ b/modules/override/PDF/Table.pm @@ -860,7 +860,7 @@ sub table if ($line_w && $vertical_lines[$column_idx] && ($column_idx != (scalar(@{ $record }) - 1))) { $gfx->move($cur_x, $cur_y); - $gfx->vline($cur_y - $row_h); + $gfx->vline($cur_y - $current_row_height); $gfx->fillcolor($border_color); } }#End of for(my $column_idx.... -- 2.20.1