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

This commit is contained in:
Kovid Goyal 2011-10-15 16:16:53 +05:30
commit 60597c159f

View File

@ -127,7 +127,7 @@ class CreateCustomColumn(QDialog, Ui_QCreateCustomColumn):
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', [])))