Limit Ancestor Chart to 15 generations.
svn: r8956
This commit is contained in:
parent
2fdae3eff8
commit
ef3811668f
@ -1,3 +1,6 @@
|
||||
2007-09-10 Brian Matherly <brian@gramps-project.org>
|
||||
* src/plugins/AncestorChart.py: Make max generations 15.
|
||||
|
||||
2007-09-09 Don Allingham <don@gramps-project.org>
|
||||
* src/Reorder.py: cleanup
|
||||
* src/TransUtils.py: cleanup
|
||||
|
@ -446,7 +446,7 @@ class AncestorChartOptions(MenuOptions):
|
||||
def add_menu_options(self,menu):
|
||||
category_name = _("Report Options")
|
||||
|
||||
max_gen = NumberOption(_("Generations"),10,1,50)
|
||||
max_gen = NumberOption(_("Generations"),10,1,15)
|
||||
max_gen.set_help(_("The number of generations to include in the report"))
|
||||
menu.add_option(category_name,"maxgen",max_gen)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user