default to allowing HTML on import

This commit is contained in:
Damien Elmes 2013-06-10 15:03:26 +09:00
parent 8fd4ae7a89
commit 9d173f4c83

View file

@ -69,7 +69,7 @@ class ImportDialog(QDialog):
self.connect(self.frm.autoDetect, SIGNAL("clicked()"),
self.onDelimiter)
self.updateDelimiterButtonText()
self.frm.allowHTML.setChecked(self.mw.pm.profile.get('allowHTML', False))
self.frm.allowHTML.setChecked(self.mw.pm.profile.get('allowHTML', True))
self.frm.importMode.setCurrentIndex(self.mw.pm.profile.get('importMode', 0))
self.exec_()