diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js index 55a171e4c..d4ff98b4e 100644 --- a/chrome/content/zotero/zoteroPane.js +++ b/chrome/content/zotero/zoteroPane.js @@ -2346,6 +2346,10 @@ var ZoteroPane = new function() } if (itemGroup.isSearch()) { + // Don't do anything on double-click of Unfiled Items + if ((itemGroup.ref.id + "").match(/^8634533000/)) { // 'UNFILED000' + return; + } ZoteroPane.editSelectedCollection(); return; }