Limit Ancestor Chart to 15 generations.

svn: r8956
This commit is contained in:
Brian Matherly 2007-09-10 12:17:42 +00:00
parent 2fdae3eff8
commit ef3811668f
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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)