allow enter to show answer when webview focused

This commit is contained in:
Damien Elmes 2012-09-12 05:27:59 +09:00
parent e7dbeeacae
commit 06abd253df

View file

@ -264,7 +264,7 @@ The front of this card is empty. Please run Tools>Maintenance>Empty Cards.""")
key = unicode(evt.text())
if key == "e":
self.mw.onEditCurrent()
elif key == " " and self.state == "question":
elif (key == " " or evt.key() in (Qt.Key_Return, Qt.Key_Enter)) and self.state == "question":
self._showAnswerHack()
elif key == "r":
self.replayAudio()