From ef3811668f3002e8fd3a46257ae4cfa3f1858b55 Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Mon, 10 Sep 2007 12:17:42 +0000 Subject: [PATCH] Limit Ancestor Chart to 15 generations. svn: r8956 --- ChangeLog | 3 +++ src/plugins/AncestorChart.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 569dd45ad..7c7107ec1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2007-09-10 Brian Matherly + * src/plugins/AncestorChart.py: Make max generations 15. + 2007-09-09 Don Allingham * src/Reorder.py: cleanup * src/TransUtils.py: cleanup diff --git a/src/plugins/AncestorChart.py b/src/plugins/AncestorChart.py index 4bdd7e6bb..73be3e347 100644 --- a/src/plugins/AncestorChart.py +++ b/src/plugins/AncestorChart.py @@ -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)