summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorivan <ivan>2005-05-13 10:55:40 +0000
committerivan <ivan>2005-05-13 10:55:40 +0000
commit6bade763bde8e6617b97144e142b3934aa767660 (patch)
treeab5856adc26a27d20bbe438b7987f668450f164d /conf
parentba1d8c4254912bfda153a2d6c91f57d256817b95 (diff)
better to do something fancy like scale down the font size to fit in the intended space or something but hey, this is good enough for now :)
Diffstat (limited to 'conf')
-rw-r--r--conf/invoice_latex4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/invoice_latex b/conf/invoice_latex
index 11c49db..9aee63e 100644
--- a/conf/invoice_latex
+++ b/conf/invoice_latex
@@ -230,8 +230,8 @@ Terms: [@-- $terms --@]\\
'{' . $line->{'amount'} . "}${rowbreak}\n";
foreach my $ext_desc (@$ext_description) {
- $ext_desc = substr($ext_desc, 0, 70) . '...'
- if (length($ext_desc) > 70);
+ $ext_desc = substr($ext_desc, 0, 80) . '...'
+ if (length($ext_desc) > 80);
$OUT .= '\FSextdesc{' . $ext_desc . '}' . "${rowbreak}\n";
}