From 29fd59c8fd4585021832d4acac65be686598468e Mon Sep 17 00:00:00 2001 From: Nils Maier Date: Mon, 26 Aug 2019 19:51:30 +0200 Subject: [PATCH] Increase recent lists to 15 Because why not?! Also closes #15 --- lib/recentlist.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/recentlist.ts b/lib/recentlist.ts index 84e58eb..bf21a7e 100644 --- a/lib/recentlist.ts +++ b/lib/recentlist.ts @@ -36,7 +36,7 @@ export class RecentList { this.pref = `savedlist-${pref}`; this.defaults = Array.from(defaults); this[LIST] = []; - this.limit = 5; + this.limit = 15; } get values() {