From 5589a0644740387a3a024f10933cf060fad2f413 Mon Sep 17 00:00:00 2001 From: John Schember Date: Fri, 28 Aug 2009 22:36:40 -0400 Subject: [PATCH] fix #3322: PDB input parameter not saved. --- src/calibre/gui2/convert/pdb_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/convert/pdb_input.py b/src/calibre/gui2/convert/pdb_input.py index cc7582c7f6..4b0ba73fda 100644 --- a/src/calibre/gui2/convert/pdb_input.py +++ b/src/calibre/gui2/convert/pdb_input.py @@ -13,7 +13,7 @@ class PluginWidget(Widget, Ui_Form): HELP = _('Options specific to')+' PDB '+_('input') def __init__(self, parent, get_option, get_help, db=None, book_id=None): - Widget.__init__(self, parent, 'txt_input', + Widget.__init__(self, parent, 'pdb_input', ['single_line_paras']) self.db, self.book_id = db, book_id self.initialize_options(get_option, get_help, db, book_id)