Skip to content

Commit

Permalink
Kinship report: change max number of generations
Browse files Browse the repository at this point in the history
Fixes #12004
  • Loading branch information
SNoiraud authored and Nick-Hall committed Mar 12, 2022
1 parent dfe221d commit 01c7227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gramps/plugins/textreport/kinshipreport.py
Expand Up @@ -359,11 +359,11 @@ def add_menu_options(self, menu):
self.__pid.set_help(_("The center person for the report"))
menu.add_option(category_name, "pid", self.__pid)

maxdescend = NumberOption(_("Max Descendant Generations"), 2, 1, 20)
maxdescend = NumberOption(_("Max Descendant Generations"), 2, 1, 50)
maxdescend.set_help(_("The maximum number of descendant generations"))
menu.add_option(category_name, "maxdescend", maxdescend)

maxascend = NumberOption(_("Max Ancestor Generations"), 2, 1, 20)
maxascend = NumberOption(_("Max Ancestor Generations"), 2, 1, 50)
maxascend.set_help(_("The maximum number of ancestor generations"))
menu.add_option(category_name, "maxascend", maxascend)

Expand Down

0 comments on commit 01c7227

Please sign in to comment.