diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 87c60f35d..f712233eb 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2003-07-04 Tim Waugh + * src/plugins/Ancestors.py: Really fixed text style for '(no photo)'. + 2003-07-02 Don Allingham * src/plugins/ReadGedcocm.py: Fix callback parameters * src/AddSpouse.py: handle adding of new person callback correctly diff --git a/gramps2/src/plugins/Ancestors.py b/gramps2/src/plugins/Ancestors.py index 4a241ae41..19eeb96c2 100644 --- a/gramps2/src/plugins/Ancestors.py +++ b/gramps2/src/plugins/Ancestors.py @@ -83,7 +83,7 @@ class AncestorsReport (Report.Report): doc.add_cell_style ("PaddedCell", cell) cell = TextDoc.TableCellStyle () - cell.set_padding (1) # each side makes 2cm, the size of the photo + cell.set_padding (0.1) cell.set_left_border (1) cell.set_top_border (1) cell.set_right_border (1)