www

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

commit ea7094821a76a8080a1bb21164a24088cc01ff7d
parent 5e190204376d1a1f75d550925d83407d9bf0dd9b
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun, 11 Mar 2012 19:37:01 -0400

Don't block when calling fallbackLauncher

Diffstat:
Mchrome/content/zotero/zoteroPane.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -3506,10 +3506,10 @@ var ZoteroPane = new function() var args = [url]; if (!Zotero.isFx36) { - proc.runw(true, args, args.length); + proc.runw(false, args, args.length); } else { - proc.run(true, args, args.length); + proc.run(false, args, args.length); } } }