* src/plugins/NavWebPage.py: Fix output_notebook remains.

svn: r5414
This commit is contained in:
Don Allingham 2005-11-22 15:38:37 +00:00
parent ed60e469f4
commit cf726952ba
2 changed files with 4 additions and 4 deletions

View File

@ -1,3 +1,6 @@
2005-11-22 Don Allingham <don@gramps-project.org>
* src/plugins/NavWebPage.py: Fix output_notebook remains.
2005-11-22 Martin Hawlisch <Martin.Hawlisch@gmx.de> 2005-11-22 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/AddrEdit.py, * src/AddrEdit.py,
* src/AttrEdit.py, * src/AttrEdit.py,

View File

@ -2639,9 +2639,6 @@ class WebReportDialog(Report.ReportDialog):
html_label.set_use_markup(True) html_label.set_use_markup(True)
self.html_table.attach(html_label, 0, 3, 0, 1, gtk.FILL) 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 = gtk.CheckButton(_('Store web pages in .tar.gz archive'))
self.archive.set_alignment(0.0,0.5) self.archive.set_alignment(0.0,0.5)
self.archive.connect('toggled',self.archive_toggle) 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 """The format frame is not used in this dialog. Hide it, and
set the output notebook to always display the html template set the output notebook to always display the html template
page.""" page."""
self.output_notebook.set_current_page(1) pass
def parse_format_frame(self): def parse_format_frame(self):
"""The format frame is not used in this dialog.""" """The format frame is not used in this dialog."""