mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
allow f5 to replay audio
This commit is contained in:
parent
028e4c11fb
commit
f3b89df5bf
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ The front of this card is empty. Please run Tools>Maintenance>Empty Cards.""")
|
|||
self.mw.onEditCurrent()
|
||||
elif (key == " " or evt.key() in (Qt.Key_Return, Qt.Key_Enter)) and self.state == "question":
|
||||
self._showAnswerHack()
|
||||
elif key == "r":
|
||||
elif key == "r" or evt.key() == Qt.Key_F5:
|
||||
self.replayAudio()
|
||||
elif key == "*":
|
||||
self.onMark()
|
||||
|
|
Loading…
Reference in a new issue