mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 21:43:51 +02:00
Fix bug preventing saving of the option (extra not)
This commit is contained in:
parent
618609dcd2
commit
d160f8e8c3
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ def save_settings(cls, config_widget):
|
|||
proxy['use_subdirs'] = config_widget.use_subdirs()
|
||||
if not cls.MUST_READ_METADATA:
|
||||
proxy['read_metadata'] = config_widget.read_metadata()
|
||||
if not cls.SUPPORTS_USE_AUTHOR_SORT:
|
||||
if cls.SUPPORTS_USE_AUTHOR_SORT:
|
||||
proxy['use_author_sort'] = config_widget.use_author_sort()
|
||||
if cls.EXTRA_CUSTOMIZATION_MESSAGE:
|
||||
ec = unicode(config_widget.opt_extra_customization.text()).strip()
|
||||
|
|
|
|||
Loading…
Reference in a new issue