From 1f05392113f92fdb8d6adfb3669d4752eff96d1c Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 26 Nov 2013 18:19:54 +0900 Subject: [PATCH] change default import mode to ignore updates --- aqt/importing.py | 2 +- aqt/profiles.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aqt/importing.py b/aqt/importing.py index 609b08ede..e41bbf1b5 100644 --- a/aqt/importing.py +++ b/aqt/importing.py @@ -79,7 +79,7 @@ class ImportDialog(QDialog): self.onDelimiter) self.updateDelimiterButtonText() self.frm.allowHTML.setChecked(self.mw.pm.profile.get('allowHTML', True)) - self.frm.importMode.setCurrentIndex(self.mw.pm.profile.get('importMode', 0)) + self.frm.importMode.setCurrentIndex(self.mw.pm.profile.get('importMode', 1)) self.exec_() def setupOptions(self): diff --git a/aqt/profiles.py b/aqt/profiles.py index 7c0e6cc74..0b5588447 100644 --- a/aqt/profiles.py +++ b/aqt/profiles.py @@ -56,7 +56,7 @@ profileConf = dict( autoSync=True, # importing allowHTML=False, - importMode=0, + importMode=1, ) class ProfileManager(object):