From dc81af96acd776a4bece5b2ee089af091b0c8575 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 7 Aug 2017 16:15:15 +1000 Subject: [PATCH] fix autoplay on the answer side --- aqt/reviewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/reviewer.py b/aqt/reviewer.py index 5a1306ec1..f915c7a0c 100644 --- a/aqt/reviewer.py +++ b/aqt/reviewer.py @@ -199,10 +199,10 @@ The front of this card is empty. Please run Tools>Empty Cards.""") self.state = "answer" c = self.card a = c.a() - a = self._mungeQA(a) # play audio? if self.autoplay(c): playFromText(a) + a = self._mungeQA(a) # render and update bottom self.web.eval("_showAnswer(%s);" % json.dumps(a)) self._showEaseButtons()