commit 2324992ac33b4fb1e65a235ff363e1a8effa3429 parent aa81249e5e2fe68694c1e9699c6ca8fe9c1d0c9d Author: Dan Stillman <dstillman@zotero.org> Date: Mon, 14 Feb 2011 07:44:22 +0000 Don't do anything on double-click of Unfiled Items Diffstat:
| M | chrome/content/zotero/zoteroPane.js | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git 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; }