mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:14:02 +02:00
Fix bug that prevent the Disabled option for Tag Browser partiotining from working in the Preferences dialog
This commit is contained in:
parent
dab89f6f79
commit
9fcf243a72
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ def genesis(self, gui):
|
|||
(_('Never'), 'never')]
|
||||
r('toolbar_text', gprefs, choices=choices)
|
||||
|
||||
choices = [(_('Disabled'), 'disabled'), (_('By first letter'), 'first letter'),
|
||||
choices = [(_('Disabled'), 'disable'), (_('By first letter'), 'first letter'),
|
||||
(_('Partitioned'), 'partition')]
|
||||
r('tags_browser_partition_method', gprefs, choices=choices)
|
||||
r('tags_browser_collapse_at', gprefs)
|
||||
|
|
|
|||
Loading…
Reference in a new issue