Store: Default new stores to unchecked in search dialog.

This commit is contained in:
John Schember 2011-05-17 07:04:58 -04:00
parent c69f442060
commit fdaed5123e

View File

@ -52,7 +52,7 @@ class SearchDialog(QDialog, Ui_Dialog):
stores_check_widget.setLayout(stores_group_layout)
for x in sorted(self.store_plugins.keys(), key=lambda x: x.lower()):
cbox = QCheckBox(x)
cbox.setChecked(True)
cbox.setChecked(False)
stores_group_layout.addWidget(cbox)
setattr(self, 'store_check_' + x, cbox)
stores_group_layout.addStretch()