From 11beca6a9235d40d486b9f0d7693d2e67f3e0407 Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Thu, 16 Oct 2025 16:18:00 +0200 Subject: [PATCH] re-add inner-padding between first line and description --- src/pretix/base/invoicing/pdf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pretix/base/invoicing/pdf.py b/src/pretix/base/invoicing/pdf.py index c709f2e455..49fda73d8a 100644 --- a/src/pretix/base/invoicing/pdf.py +++ b/src/pretix/base/invoicing/pdf.py @@ -909,13 +909,13 @@ class ClassicInvoiceRenderer(BaseReportlabInvoiceRenderer): tstyledata += [ ( 'BOTTOMPADDING', - (0, len(tdata) - len(description_p_list) - 1), + (0, len(tdata) - len(description_p_list)), (-1, len(tdata) - 2), 0 ), ( 'TOPPADDING', - (0, len(tdata) - len(description_p_list)), + (0, len(tdata) - len(description_p_list) + 1), (-1, len(tdata) - 1), 0 ),