Update bill title

This commit is contained in:
Gregory Trullemans 2022-09-20 09:02:29 +02:00
parent de004043c3
commit c7a341b76a
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ class BillPaper(PDFDocument):
""" Ajout le titre d'une section """
text = "<b>" + title_text + "</b>"
paragraph = Paragraph(text, self.style)
width, height = paragraph.wrap(6*cm, self.y)
width, height = paragraph.wrap(10*cm, self.y)
paragraph.drawOn(self.document, INDENTED_X, self.y - height)
self.add_vspace(-height)