From 8ffc278286c0c36a3f38f177a2e0d1713a401ea5 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 30 Jan 2008 07:54:13 +0000 Subject: [PATCH] - Put the "..." in the proper cell --- lpdf.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lpdf.php b/lpdf.php index 95fad238..bcea2b33 100644 --- a/lpdf.php +++ b/lpdf.php @@ -748,17 +748,19 @@ class lpdf $h = $col_height * $line_height; $textstr=trim($dataline[$c]); - pdf_show_boxed($this->pdf,$textstr, + $notfit = pdf_show_boxed($this->pdf,$textstr, $this->loc($xpos+$table_padding),$this->loc($this->yloc-$h), $this->loc($width-2*$table_padding),$this->loc($h), $table['dataalign'][$c],null); - //put a little "..." at the end of the field if($notfit) { pdf_setfont($this->pdf,$this->normalfont,8); - pdf_show_boxed($this->pdf,"...",$this->loc($xpos+$width-0.10),$this->loc($this->yloc-0.05),$this->loc(0.10),$this->loc($line_height),$table['dataalign'][$c],null); + pdf_show_boxed($this->pdf,"...", + $this->loc($xpos+$width-0.10),$this->loc($this->yloc-$line_height-0.05), + $this->loc(0.10),$this->loc($line_height), + $table['dataalign'][$c],null); pdf_setfont($this->pdf,$this->normalfont,10); }