Fix regression breaking editing the 'show in tag browser' checkbox in custom column setup editing

This commit is contained in:
Charles Haley 2011-10-15 12:14:58 +02:00
parent 1de538588a
commit f0987fe0a6

View file

@ -127,7 +127,7 @@ def __init__(self, parent, editing, standard_colheads, standard_colnames):
self.composite_sort_by.setCurrentIndex(sb)
self.composite_make_category.setChecked(
c['display'].get('make_category', False))
self.composite_make_category.setChecked(
self.composite_contains_html.setChecked(
c['display'].get('contains_html', False))
elif ct == 'enumeration':
self.enum_box.setText(','.join(c['display'].get('enum_values', [])))