mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
default to button 2 on failed card
This commit is contained in:
parent
753fd2ee40
commit
7ad0686928
1 changed files with 4 additions and 1 deletions
|
@ -395,7 +395,10 @@ new:
|
|||
self.updateEaseButtons()
|
||||
self.mainWin.buttonStack.setCurrentIndex(1)
|
||||
self.mainWin.buttonStack.show()
|
||||
self.mainWin.easeButton3.setFocus()
|
||||
if self.currentCard.reps and not self.currentCard.successive:
|
||||
self.mainWin.easeButton2.setFocus()
|
||||
else:
|
||||
self.mainWin.easeButton3.setFocus()
|
||||
|
||||
def showSaveEditorButton(self):
|
||||
self.mainWin.buttonStack.setCurrentIndex(2)
|
||||
|
|
Loading…
Reference in a new issue