Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the PDF-Table CPAN distribution.

Report information
The Basics
Id: 80411
Status: resolved
Priority: 0/
Queue: PDF-Table

People
Owner: OMEGA [...] cpan.org
Requestors: dticozzi [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.9.6
Fixed in: 0.9.7



Subject: row_height is not documentated and work only on first row
First of all row_height is not documentated. Second, when used works only on first row. $pdftable->table( ... row_height => size ... } FIX: comment out or remove line 641
Hi, Thanks for the report. I'm aware of this and it will be fixed in the upcoming 0.9.7 You can track the progress at github. -- De si?
From: dticozzi [...] gmail.com
Il Ven 26 Ott 2012 03:57:23, OMEGA ha scritto: Show quoted text
> Hi, > > Thanks for the report. > I'm aware of this and it will be fixed in the upcoming 0.9.7 > You can track the progress at github. > -- > De si?
No problem, thanx you for this useful module bug line is 637 (not 641). Patch provided.
Subject: fix_row_height.diff
--- ../Table.pm 2012-10-20 15:40:34.000000000 +0200 +++ Table.pm 2012-10-26 09:58:05.855115084 +0200 @@ -636,7 +636,7 @@ }#End of for(my $j.... $cur_y -= $row_h; - $row_h = $min_row_h; + if ($gfx && $horiz_borders) { $gfx->move( $xbase , $cur_y ); @@ -877,6 +877,7 @@ header_props => $hdr_props, # see section HEADER ROW PROPERTIES column_props => $col_props, # see section COLUMN PROPERTIES cell_props => $row_props, # see section CELL PROPERTIES + row_height => 10, # rows height, default auto ) =back
Fixed in 0.9.7 -- De si?