diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index 4188154fe..c044dc682 100755 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -671,7 +671,7 @@ new: self.moveToState("noDeck") return try: - self.deck = DeckStorage.Deck(deckPath) + self.deck = DeckStorage.Deck(deckPath, progress=True) except Exception, e: if hasattr(e, 'data') and e.data.get('type') == 'inuse': if interactive: @@ -1066,7 +1066,7 @@ your deck.""")) toRemove.append(d) continue try: - deck = DeckStorage.Deck(d, backup=False) + deck = DeckStorage.Deck(d, backup=False, progress=True) self.browserDecks.append({ 'path': d, 'name': deck.name(),