Missed a QVariant

This commit is contained in:
Jonathan Corwin 2012-12-28 22:46:27 +00:00
parent d814553924
commit d1eca2d4c4
1 changed files with 1 additions and 2 deletions

View File

@ -90,8 +90,7 @@ class CustomMediaItem(MediaManagerItem):
QtCore.SIGNAL(u'custom_create_from_service'), self.create_from_service_item)
def config_updated(self):
self.add_custom_from_service = Settings().value(
self.settingsSection + u'/add custom from service', QtCore.QVariant(u'True')).toBool()
self.add_custom_from_service = Settings().value(self.settingsSection + u'/add custom from service', True)
def retranslateUi(self):
self.searchTextLabel.setText(u'%s:' % UiStrings().Search)