mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
change default import mode to ignore updates
This commit is contained in:
parent
dc2fd097d8
commit
1f05392113
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ class ImportDialog(QDialog):
|
||||||
self.onDelimiter)
|
self.onDelimiter)
|
||||||
self.updateDelimiterButtonText()
|
self.updateDelimiterButtonText()
|
||||||
self.frm.allowHTML.setChecked(self.mw.pm.profile.get('allowHTML', True))
|
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_()
|
self.exec_()
|
||||||
|
|
||||||
def setupOptions(self):
|
def setupOptions(self):
|
||||||
|
|
|
@ -56,7 +56,7 @@ profileConf = dict(
|
||||||
autoSync=True,
|
autoSync=True,
|
||||||
# importing
|
# importing
|
||||||
allowHTML=False,
|
allowHTML=False,
|
||||||
importMode=0,
|
importMode=1,
|
||||||
)
|
)
|
||||||
|
|
||||||
class ProfileManager(object):
|
class ProfileManager(object):
|
||||||
|
|
Loading…
Reference in a new issue