aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2018-02-16 07:31:21 +0000
committerStephen Blott2018-02-16 07:31:21 +0000
commitb90afbc2c55d172fedb9957c3781a0a629a63431 (patch)
treeeab84dddec1d0866ede6e8bfa8bfd9c347077899
parentdc68113c223babd75d808d32d318f69cc85b3b41 (diff)
downloadvimium-b90afbc2c55d172fedb9957c3781a0a629a63431.tar.bz2
Remove "focused: true" from winConfig.
According to: - https://bugzilla.mozilla.org/show_bug.cgi?id=1253129 and #2896, this: 1. causes Firefox to crash, and 2. isn't actually necessary. So just remove it. H/t @ris58h in #2896.
-rw-r--r--background_scripts/main.coffee1
1 files changed, 0 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index 78bfce4c..e0215436 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -192,7 +192,6 @@ BackgroundCommands =
if request.registryEntry.options.incognito or request.registryEntry.options.window
windowConfig =
url: request.urls
- focused: true
incognito: request.registryEntry.options.incognito ? false
chrome.windows.create windowConfig, -> callback request
else