mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-30 19:46:19 +01:00
Fix bug in Bulk conversion that was causing the saved conversion defaults to not be picked up
This commit is contained in:
parent
602c205bbe
commit
b652baf825
1 changed files with 1 additions and 1 deletions
|
|
@ -58,6 +58,7 @@ def initialize_common(self):
|
|||
self.gui_serif_family.setModel(self.font_family_model)
|
||||
self.gui_sans_family.setModel(self.font_family_model)
|
||||
self.gui_mono_family.setModel(self.font_family_model)
|
||||
self.load_saved_global_defaults()
|
||||
|
||||
def __init__(self, window, db, row):
|
||||
QDialog.__init__(self, window)
|
||||
|
|
@ -78,7 +79,6 @@ def __init__(self, window, db, row):
|
|||
self.changed = False
|
||||
|
||||
|
||||
self.load_saved_global_defaults()
|
||||
if db:
|
||||
self.id = self.db.id(self.row)
|
||||
self.read_saved_options()
|
||||
|
|
|
|||
Loading…
Reference in a new issue