From 375c7e543057db3b8a2d6e3c09b07936f4071f83 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 95efebc48..1fd50546c 100644 --- a/modules/override/PDF/Table.pm +++ b/modules/override/PDF/Table.pm @@ -813,7 +813,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