From b848f1cd2a328ca1e1b9ed5f8ce7d327fdb03282 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Fri, 9 Dec 2016 19:48:34 -0800 Subject: [PATCH] make report dialog height less than 600, for smaller displays [DR] --- gramps/plugins/textreport/descendreport.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gramps/plugins/textreport/descendreport.py b/gramps/plugins/textreport/descendreport.py index 082c0e4da..623ff0301 100644 --- a/gramps/plugins/textreport/descendreport.py +++ b/gramps/plugins/textreport/descendreport.py @@ -513,6 +513,10 @@ class DescendantOptions(MenuReportOptions): stdoptions.add_living_people_option(menu, category_name) + stdoptions.add_localization_option(menu, category_name) + + category_name = _("Content") + numbering = EnumeratedListOption(_("Numbering system"), "Simple") numbering.set_items([ ("Simple", _("Simple numbering")), @@ -542,8 +546,6 @@ class DescendantOptions(MenuReportOptions): _("Whether to show duplicate Family Trees in the report.")) menu.add_option(category_name, "dups", dups) - stdoptions.add_localization_option(menu, category_name) - def make_default_style(self, default_style): """Make the default output style for the Descendant Report.""" fstyle = FontStyle()