From 9fcf243a72616a42c58c2e6071c42096f101d9c9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 4 Jan 2011 08:55:52 -0700 Subject: [PATCH] Fix bug that prevent the Disabled option for Tag Browser partiotining from working in the Preferences dialog --- src/calibre/gui2/preferences/look_feel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/preferences/look_feel.py b/src/calibre/gui2/preferences/look_feel.py index 263d19325d..37ed90cc61 100644 --- a/src/calibre/gui2/preferences/look_feel.py +++ b/src/calibre/gui2/preferences/look_feel.py @@ -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)