mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-29 09:26:07 +01:00
Remove 'identifiers' from the list of fields that can be hierarchical
This commit is contained in:
parent
4715f600a3
commit
b01e421a9e
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ def genesis(self, gui):
|
|||
choices = set([k for k in db.field_metadata.all_field_keys()
|
||||
if db.field_metadata[k]['is_category'] and
|
||||
db.field_metadata[k]['datatype'] in ['text', 'series', 'enumeration']])
|
||||
choices -= set(['authors', 'publisher', 'formats', 'news'])
|
||||
choices -= set(['authors', 'publisher', 'formats', 'news', 'identifiers'])
|
||||
self.opt_categories_using_hierarchy.update_items_cache(choices)
|
||||
r('categories_using_hierarchy', db.prefs, setting=CommaSeparatedList,
|
||||
choices=sorted(list(choices), key=sort_key))
|
||||
|
|
|
|||
Loading…
Reference in a new issue