From 4b49782facb84474d4abafe6f228714cd8ad3fcf Mon Sep 17 00:00:00 2001 From: Martin Gross Date: Thu, 22 Sep 2022 10:42:10 +0200 Subject: [PATCH] Invoices: Explicitly set regular_font for main invoice table --- src/pretix/base/invoice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pretix/base/invoice.py b/src/pretix/base/invoice.py index 65e25458a..679ccdc5a 100644 --- a/src/pretix/base/invoice.py +++ b/src/pretix/base/invoice.py @@ -533,6 +533,7 @@ class ClassicInvoiceRenderer(BaseReportlabInvoiceRenderer): tstyledata = [ ('ALIGN', (1, 0), (-1, -1), 'RIGHT'), ('VALIGN', (0, 0), (-1, -1), 'TOP'), + ('FONTNAME', (0, 0), (-1, -1), self.font_regular), ('FONTNAME', (0, 0), (-1, 0), self.font_bold), ('FONTNAME', (0, -1), (-1, -1), self.font_bold), ('LEFTPADDING', (0, 0), (0, -1), 0),