From 36380651e400c104f3c1c0a6c2f5f9f00a2669f4 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Fri, 9 Dec 2016 19:49:03 -0800 Subject: [PATCH] make report dialog height less than 600, for smaller displays [DAR] --- .../plugins/textreport/detancestralreport.py | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gramps/plugins/textreport/detancestralreport.py b/gramps/plugins/textreport/detancestralreport.py index 198c5355b..8ea6f849c 100644 --- a/gramps/plugins/textreport/detancestralreport.py +++ b/gramps/plugins/textreport/detancestralreport.py @@ -798,16 +798,6 @@ class DetAncestorOptions(MenuReportOptions): gen.set_help(_("The number of generations to include in the report")) addopt("gen", gen) - pagebbg = BooleanOption(_("Page break between generations"), False) - pagebbg.set_help( - _("Whether to start a new page after each generation.")) - addopt("pagebbg", pagebbg) - - pageben = BooleanOption(_("Page break before end notes"), False) - pageben.set_help( - _("Whether to start a new page before the end notes.")) - addopt("pageben", pageben) - stdoptions.add_localization_option(menu, category) # Content options @@ -847,6 +837,16 @@ class DetAncestorOptions(MenuReportOptions): _("Whether to add descendant references in child list.")) addopt("desref", desref) + pagebbg = BooleanOption(_("Page break between generations"), False) + pagebbg.set_help( + _("Whether to start a new page after each generation.")) + addopt("pagebbg", pagebbg) + + pageben = BooleanOption(_("Page break before end notes"), False) + pageben.set_help( + _("Whether to start a new page before the end notes.")) + addopt("pageben", pageben) + # What to include addopt = partial(menu.add_option, _("Include"))