From ea7094821a76a8080a1bb21164a24088cc01ff7d Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sun, 11 Mar 2012 19:37:01 -0400 Subject: [PATCH] Don't block when calling fallbackLauncher --- chrome/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 index ad6615738f..3439983647 100644 --- 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); } } }