From 0081ff32d090a059d3ef11cc80624441555cba99 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Mon, 13 Oct 2008 23:36:53 +0900 Subject: [PATCH] allow more recent decks --- ankiqt/ui/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index a1692aed8..eb938d4b1 100644 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -539,7 +539,7 @@ class AnkiQt(QMainWindow): if path in self.config['recentDeckPaths']: self.config['recentDeckPaths'].remove(path) self.config['recentDeckPaths'].insert(0, path) - del self.config['recentDeckPaths'][4:] + del self.config['recentDeckPaths'][8:] self.config.save() self.updateRecentFilesMenu()