2586: Add spouses to the Descendant Tree report
Avoid crash on no spouse, patch by Craig svn: r11732
This commit is contained in:
parent
a9c314713f
commit
e57f18a698
@ -173,8 +173,15 @@ class DescendTree(Report):
|
|||||||
also sets wether the person is:
|
also sets wether the person is:
|
||||||
- a direct descendent or a spouse
|
- a direct descendent or a spouse
|
||||||
- the max length of the text/box, and number of lines"""
|
- the max length of the text/box, and number of lines"""
|
||||||
self.genchart.set_xy(col_x, row_y, person_handle)
|
|
||||||
self.genchart.set_sp(col_x, row_y, spouse_level)
|
self.genchart.set_sp(col_x, row_y, spouse_level)
|
||||||
|
if person_handle is not None:
|
||||||
|
self.genchart.set_xy(col_x, row_y, person_handle)
|
||||||
|
else:
|
||||||
|
#make sure that a box prints
|
||||||
|
self.genchart.set_xy(col_x, row_y, ".")
|
||||||
|
#make a blank box.
|
||||||
|
self.text[(col_x, row_y)] = [""]
|
||||||
|
return
|
||||||
|
|
||||||
style_sheet = self.doc.get_style_sheet()
|
style_sheet = self.doc.get_style_sheet()
|
||||||
pstyle = style_sheet.get_paragraph_style("DC2-Normal")
|
pstyle = style_sheet.get_paragraph_style("DC2-Normal")
|
||||||
|
Loading…
Reference in New Issue
Block a user