From 9d173f4c835b67ce70c19e969c0bac6503809400 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 10 Jun 2013 15:03:26 +0900 Subject: [PATCH] default to allowing HTML on import --- aqt/importing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/importing.py b/aqt/importing.py index d62f0edc3..a69e2cb98 100644 --- a/aqt/importing.py +++ b/aqt/importing.py @@ -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_()