This commit is contained in:
Kovid Goyal 2017-06-16 20:33:59 +05:30
parent dbfb3fc2ca
commit 04187413a6
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -164,6 +164,7 @@ class Bool(Base):
def set_to_cleared(self): def set_to_cleared(self):
self.combobox.setCurrentIndex(2) self.combobox.setCurrentIndex(2)
class Int(Base): class Int(Base):
def setup_ui(self, parent): def setup_ui(self, parent):
@ -600,6 +601,7 @@ def comments_factory(db, key, parent):
return LongText(db, key, parent) return LongText(db, key, parent)
return Comments(db, key, parent) return Comments(db, key, parent)
widgets = { widgets = {
'bool' : Bool, 'bool' : Bool,
'rating' : Rating, 'rating' : Rating,
@ -1206,5 +1208,3 @@ bulk_widgets = {
'series': BulkSeries, 'series': BulkSeries,
'enumeration': BulkEnumeration, 'enumeration': BulkEnumeration,
} }