diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index 9cd43816d..78e4c431b 100755 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -2514,7 +2514,8 @@ it to your friends. def onRepeatAudio(self): clearAudioQueue() - if not self.currentCard.cardModel.questionInAnswer: + if (not self.currentCard.cardModel.questionInAnswer + or self.state == "showQuestion"): playFromText(self.currentCard.question) if self.state != "showQuestion": playFromText(self.currentCard.answer)