Revert workaround for bug #8833

This reverts commit 20a57037f7.
This commit is contained in:
Nick Hall 2015-09-05 17:26:44 +01:00
parent 11e31e85ac
commit ec9371d3b1
3 changed files with 3 additions and 9 deletions

View File

@ -244,9 +244,7 @@ class GVOptions():
category = _("Note")
################################
# workaround for bug 8833
lines = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
note = TextOption(_("Note to add to the graph") + lines,
note = TextOption(_("Note to add to the graph"),
[""] )
note.set_help(_("This text will be added to the graph."))
menu.add_option(category, "note", note)

View File

@ -927,10 +927,8 @@ class AncestorTreeOptions(MenuReportOptions):
##################
category_name = _("Replace")
# workaround for bug 8833
lines = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
repldisp = TextOption(
_("Replace Display Format:\n'Replace this'/' with this'") + lines,
_("Replace Display Format:\n'Replace this'/' with this'"),
[])
repldisp.set_help(_("i.e.\nUnited States of America/U.S.A"))
menu.add_option(category_name, "replace_list", repldisp)

View File

@ -1578,10 +1578,8 @@ class DescendTreeOptions(MenuReportOptions):
##################
category_name = _("Replace")
# workaround for bug 8833
lines = "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n"
repldisp = TextOption(
_("Replace Display Format:\n'Replace this'/' with this'") + lines,
_("Replace Display Format:\n'Replace this'/' with this'"),
[])
repldisp.set_help(_("i.e.\nUnited States of America/U.S.A"))
menu.add_option(category_name, "replace_list", repldisp)