From 483518bce92a88dd10fc859628f883d553c274c5 Mon Sep 17 00:00:00 2001 From: Richard Schreiber Date: Fri, 15 Mar 2024 13:34:19 +0100 Subject: [PATCH] Fix: left align first column header on invoices without tax --- src/pretix/base/invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/invoice.py b/src/pretix/base/invoice.py index 7131620bc..81ffc5555 100644 --- a/src/pretix/base/invoice.py +++ b/src/pretix/base/invoice.py @@ -625,7 +625,7 @@ class ClassicInvoiceRenderer(BaseReportlabInvoiceRenderer): )] else: tdata = [( - Paragraph(self._normalize(pgettext('invoice', 'Description')), self.stylesheet['BoldRight']), + Paragraph(self._normalize(pgettext('invoice', 'Description')), self.stylesheet['Bold']), Paragraph(self._normalize(pgettext('invoice', 'Qty')), self.stylesheet['BoldRightNoSplit']), Paragraph(self._normalize(pgettext('invoice', 'Amount')), self.stylesheet['BoldRightNoSplit']), )]