mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
BUGFIX: QLineEdit doesn't have .toPlainText()
This commit is contained in:
parent
f4649b515f
commit
b4facdf650
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ you can enter it here. Use \\t to represent tab."""
|
|||
self.importer.allowHTML = self.frm.allowHTML.isChecked()
|
||||
self.mw.pm.profile["allowHTML"] = self.importer.allowHTML
|
||||
if self.frm.tagModifiedCheck.isChecked():
|
||||
self.importer.tagModified = self.frm.tagModifiedTag.toPlainText()
|
||||
self.importer.tagModified = self.frm.tagModifiedTag.text()
|
||||
self.mw.pm.profile["tagModified"] = self.importer.tagModified
|
||||
did = self.deck.selectedId()
|
||||
if did != self.importer.model["did"]:
|
||||
|
|
Loading…
Reference in a new issue