diff --git a/src/PdfDoc.py b/src/PdfDoc.py index 2ca01ba74..536c2afa5 100644 --- a/src/PdfDoc.py +++ b/src/PdfDoc.py @@ -220,7 +220,11 @@ class PdfDoc(TextDoc): pass def end_cell(self): - self.cur_row.append(self.text) + if self.span == 1: +# self.cur_row.append(self.text) + self.cur_row.append(Paragraph(self.text,self.current_para)) + else: + self.cur_row.append(self.text) for val in range(1,self.span): self.cur_row.append("") diff --git a/src/plugins/FamilyGroup.py b/src/plugins/FamilyGroup.py index f51f070ed..2ce7edadb 100644 --- a/src/plugins/FamilyGroup.py +++ b/src/plugins/FamilyGroup.py @@ -116,9 +116,9 @@ class FamilyGroup: table = TableStyle() table.set_width(100) table.set_columns(4) - table.set_column_width(0,5) - table.set_column_width(1,15) - table.set_column_width(2,40) + table.set_column_width(0,7) + table.set_column_width(1,18) + table.set_column_width(2,35) table.set_column_width(3,40) self.doc.add_table_style('ChildTable',table)