diff --git a/src/calibre/gui2/convert/look_and_feel.py b/src/calibre/gui2/convert/look_and_feel.py index 397937dc78..e2015dc380 100644 --- a/src/calibre/gui2/convert/look_and_feel.py +++ b/src/calibre/gui2/convert/look_and_feel.py @@ -21,7 +21,7 @@ class LookAndFeelWidget(Widget, Ui_Form): ['dont_justify', 'extra_css', 'base_font_size', 'font_size_mapping', 'insert_metadata', 'line_height', 'linearize_tables', 'remove_first_image', - 'remove_paragraph_spacing'] + 'remove_paragraph_spacing', 'input_encoding'] ) self.db, self.book_id = db, book_id self.initialize_options(get_option, get_help, db, book_id) diff --git a/src/calibre/gui2/convert/look_and_feel.ui b/src/calibre/gui2/convert/look_and_feel.ui index 302ca13776..c6a1a715a6 100644 --- a/src/calibre/gui2/convert/look_and_feel.ui +++ b/src/calibre/gui2/convert/look_and_feel.ui @@ -68,28 +68,28 @@ - + Remove &spacing between paragraphs - + No text &justification - + &Linearize tables - + Remove &first image from source file @@ -109,13 +109,26 @@ - + Insert &metadata at start of book + + + + Input character &encoding + + + opt_input_encoding + + + + + + diff --git a/src/calibre/gui2/convert/single.py b/src/calibre/gui2/convert/single.py index faa8ebcf83..4d3f023a4c 100644 --- a/src/calibre/gui2/convert/single.py +++ b/src/calibre/gui2/convert/single.py @@ -92,7 +92,7 @@ class Config(ResizableDialog, Ui_Dialog): self.show_pane) self.connect(self.groups, SIGNAL('clicked(QModelIndex)'), self.show_pane) - self.connect(self.groups, SIGNAL('itemEntered(QModelIndex)'), + self.connect(self.groups, SIGNAL('entered(QModelIndex)'), self.show_group_help) self.groups.setMouseTracking(True)