diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 61663dd4f..0769aa4c6 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2005-11-22 Don Allingham + * src/plugins/NavWebPage.py: Fix output_notebook remains. + 2005-11-22 Martin Hawlisch * src/AddrEdit.py, * src/AttrEdit.py, diff --git a/gramps2/src/plugins/NavWebPage.py b/gramps2/src/plugins/NavWebPage.py index b20ed63ec..c1a9eba4c 100644 --- a/gramps2/src/plugins/NavWebPage.py +++ b/gramps2/src/plugins/NavWebPage.py @@ -2639,9 +2639,6 @@ class WebReportDialog(Report.ReportDialog): html_label.set_use_markup(True) self.html_table.attach(html_label, 0, 3, 0, 1, gtk.FILL) - label = gtk.Label(_("HTML Options")) - self.output_notebook.append_page(self.html_table,label) - self.archive = gtk.CheckButton(_('Store web pages in .tar.gz archive')) self.archive.set_alignment(0.0,0.5) self.archive.connect('toggled',self.archive_toggle) @@ -2690,7 +2687,7 @@ class WebReportDialog(Report.ReportDialog): """The format frame is not used in this dialog. Hide it, and set the output notebook to always display the html template page.""" - self.output_notebook.set_current_page(1) + pass def parse_format_frame(self): """The format frame is not used in this dialog."""