Check for self.typedAnswer only after it has been set.

This commit is contained in:
ospalh 2013-04-27 16:12:03 +02:00
parent 6ef7354fe2
commit 9239c62a42

View file

@ -377,10 +377,10 @@ Please run Tools>Maintenance>Empty Cards""")
""" % (self.typeFont, self.typeSize), buf)
def typeAnsAnswerFilter(self, buf):
if not self.typeCorrect or not self.typedAnswer:
return re.sub(self.typeAnsPat, "", buf)
# tell webview to call us back with the input content
self.web.eval("_getTypedText();")
if not self.typeCorrect or not self.typedAnswer:
return re.sub(self.typeAnsPat, "", buf)
# munge correct value
parser = HTMLParser.HTMLParser()
cor = stripHTML(self.mw.col.media.strip(self.typeCorrect))