* src/plugins/AncestorChart.py (AncestorChart.__init__): Call calc()
after self.standalone is defined. svn: r2122
This commit is contained in:
parent
ce13ddf5be
commit
9c868b08b5
@ -1,3 +1,7 @@
|
|||||||
|
2003-09-13 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
|
* src/plugins/AncestorChart.py (AncestorChart.__init__): Call calc()
|
||||||
|
after self.standalone is defined.
|
||||||
|
|
||||||
2003-09-12 Don Allingham <dallingham@users.sourceforge.net>
|
2003-09-12 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* src/BaseDoc.py: add init function to BaseDoc to be called after
|
* src/BaseDoc.py: add init function to BaseDoc to be called after
|
||||||
all graphics formats are defined
|
all graphics formats are defined
|
||||||
|
@ -80,12 +80,12 @@ class AncestorChart:
|
|||||||
self.lines = 0
|
self.lines = 0
|
||||||
self.display = display
|
self.display = display
|
||||||
self.newpage = newpage
|
self.newpage = newpage
|
||||||
self.calc()
|
|
||||||
if output:
|
if output:
|
||||||
self.standalone = 1
|
self.standalone = 1
|
||||||
self.doc.open(output)
|
self.doc.open(output)
|
||||||
else:
|
else:
|
||||||
self.standalone = 0
|
self.standalone = 0
|
||||||
|
self.calc()
|
||||||
|
|
||||||
def filter(self,person,index):
|
def filter(self,person,index):
|
||||||
"""traverse the ancestors recursively until either the end
|
"""traverse the ancestors recursively until either the end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user