BUGFIX: PDF:Table verwendet font_color in Folgezeile
authorMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Mon, 20 Feb 2017 10:54:22 +0000 (11:54 +0100)
committerMartin Helmling martin.helmling@octosoft.eu <martin.helmling@octosoft.eu>
Mon, 20 Feb 2017 10:54:22 +0000 (11:54 +0100)
Getestet bis zu Version 0.9.12

Durch das Setzen der cell_props mit font_color auf weiss, gibt es in der
Folgezeile einen Text Weiß auf Weiß, d.h. nicht sichtbar.

Deshalb erst einmal auskommentiert.

SL/ReportGenerator.pm

index 30517a1..0a61195 100644 (file)
@@ -501,7 +501,9 @@ sub generate_pdf_content {
 
         foreach (0 .. $num_columns - 1) {
           push @{ $cell_props_row }, { 'background_color' => '#666666',
-                                       'font_color'       => '#ffffff',
+               #  BUG PDF:Table  -> 0.9.12:
+               # font_color is used in next row, so dont set font_color
+               #                       'font_color'       => '#ffffff',
                                        'colspan'          => $_ == 0 ? -1 : undef, };
         }
       }