From b91664435fee4a05b877f30abda22ccdf1824dc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Thu, 26 Aug 2021 09:33:47 +0300 Subject: [PATCH] HTML Tree: Fix Show Items from Subcollections. Closes #2160 --- chrome/content/zotero/xpcom/prefs.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chrome/content/zotero/xpcom/prefs.js b/chrome/content/zotero/xpcom/prefs.js index 1453b0e936..688c9f18c1 100644 --- a/chrome/content/zotero/xpcom/prefs.js +++ b/chrome/content/zotero/xpcom/prefs.js @@ -230,6 +230,9 @@ Zotero.Prefs = new function(){ Zotero.getActiveZoteroPane().collectionsView && Zotero.getActiveZoteroPane().collectionsView.updateFontSize(); Zotero.getActiveZoteroPane().itemsView && Zotero.getActiveZoteroPane().itemsView.updateFontSize(); }], + ["recursiveCollections", function() { + Zotero.getActiveZoteroPane().itemsView.refreshAndMaintainSelection(); + }], [ "layout", function(val) { Zotero.getActiveZoteroPane().updateLayout(); }],