minor updates
This commit is contained in:
parent
114decfb3d
commit
ec02e74371
@ -448,7 +448,7 @@ class AscendPerson(_StopRecurse, _PersonSeen):
|
|||||||
|
|
||||||
self.__fill(index*2, generation+1, mx_fill-1)
|
self.__fill(index*2, generation+1, mx_fill-1)
|
||||||
if mx_fill > 1: # marriage of parents
|
if mx_fill > 1: # marriage of parents
|
||||||
self.add_marriage((generation+1, index*2), None, None)
|
self.add_marriage((generation+1, index*2), None, None)
|
||||||
if not self.can_recurse():
|
if not self.can_recurse():
|
||||||
self.continue_recursion()
|
self.continue_recursion()
|
||||||
return
|
return
|
||||||
|
@ -836,6 +836,9 @@ class LineBase(object):
|
|||||||
#self.linestr = "None"
|
#self.linestr = "None"
|
||||||
self.start = [start]
|
self.start = [start]
|
||||||
self.end = []
|
self.end = []
|
||||||
|
|
||||||
|
def add_from(self, person):
|
||||||
|
self.start.append(person)
|
||||||
|
|
||||||
def add_to(self, person):
|
def add_to(self, person):
|
||||||
""" add destination boxes to draw this line to """
|
""" add destination boxes to draw this line to """
|
||||||
|
Loading…
Reference in New Issue
Block a user