www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 67e6cbfeded49088978f538d96dfc7fbd027c944
parent 84fe2728dae56d92d3f62b7896fb07cdbf63538e
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon,  6 Feb 2012 12:44:00 -0500

Fix repaint

Diffstat:
Mchrome/content/zotero/fileInterface.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/fileInterface.js b/chrome/content/zotero/fileInterface.js @@ -623,7 +623,7 @@ var Zotero_File_Interface = new function() { var now = Date.now(); // Don't repaint more than 10 times per second unless forced. - if(!force && window.zoteroLastRepaint && (now - window.zoteroLastRepaint) < 100) return + if(window.zoteroLastRepaint && (now - window.zoteroLastRepaint) < 100) return // Start a nested event queue Zotero.mainThread.pushEventQueue(null);