From 8d38122e9bd94e4c366bbc74e628cce0b3fccabe Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 13 Oct 2009 22:29:25 +0000 Subject: [PATCH] Fix restart error dragging items between libraries --- chrome/content/zotero/xpcom/data/collection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data/collection.js b/chrome/content/zotero/xpcom/data/collection.js index b9e4bd814..ee7cb73f3 100644 --- a/chrome/content/zotero/xpcom/data/collection.js +++ b/chrome/content/zotero/xpcom/data/collection.js @@ -704,7 +704,7 @@ Zotero.Collection.prototype.addItems = function(itemIDs) { notifierPairs.push(this.id + '-' + itemID); - if ((i % 25) == 0) { + if ((i % 25) == 0 && Zotero.locked) { Zotero.wait(); } }