mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 16:02:23 -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:
|
def selected(self) -> int:
|
||||||
"The currently selected did."
|
"The currently selected did."
|
||||||
return self.col.conf["curDeck"]
|
return int(self.col.conf["curDeck"])
|
||||||
|
|
||||||
def current(self) -> Deck:
|
def current(self) -> Deck:
|
||||||
return self.get(self.selected())
|
return self.get(self.selected())
|
||||||
|
|
Loading…
Reference in a new issue