diff options
| author | Stephen Blott | 2018-02-16 07:31:21 +0000 |
|---|---|---|
| committer | Stephen Blott | 2018-02-16 07:31:21 +0000 |
| commit | b90afbc2c55d172fedb9957c3781a0a629a63431 (patch) | |
| tree | eab84dddec1d0866ede6e8bfa8bfd9c347077899 | |
| parent | dc68113c223babd75d808d32d318f69cc85b3b41 (diff) | |
| download | vimium-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.coffee | 1 |
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 |
