Fix bug that prevent the Disabled option for Tag Browser partiotining from working in the Preferences dialog

This commit is contained in:
Kovid Goyal 2011-01-04 08:55:52 -07:00
parent dab89f6f79
commit 9fcf243a72

View File

@ -57,7 +57,7 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
(_('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)