change default import mode to ignore updates

This commit is contained in:
Damien Elmes 2013-11-26 18:19:54 +09:00
parent dc2fd097d8
commit 1f05392113
2 changed files with 2 additions and 2 deletions

View file

@ -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):

View file

@ -56,7 +56,7 @@ profileConf = dict(
autoSync=True,
# importing
allowHTML=False,
importMode=0,
importMode=1,
)
class ProfileManager(object):