mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
Merge pull request #872 from RumovZ/fix-deck-check
Fix deck check and thus blue sync arrow bug
This commit is contained in:
commit
cb93a0909c
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ class DeckManager:
|
|||
|
||||
def selected(self) -> int:
|
||||
"The currently selected did."
|
||||
return self.col.conf["curDeck"]
|
||||
return int(self.col.conf["curDeck"])
|
||||
|
||||
def current(self) -> Deck:
|
||||
return self.get(self.selected())
|
||||
|
|
Loading…
Reference in a new issue