diff options
| -rw-r--r-- | content_scripts/vimium_frontend.coffee | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee index 1bf49a26..02e6c9ee 100644 --- a/content_scripts/vimium_frontend.coffee +++ b/content_scripts/vimium_frontend.coffee @@ -611,10 +611,7 @@ checkIfEnabledForUrl = (frameIsFocused = windowIsFocused()) -> # When we're informed by the background page that a URL in this tab has changed, we check if we have the # correct enabled state (but only if this frame has the focus). checkEnabledAfterURLChange = -> - if windowIsFocused() - checkIfEnabledForUrl() - # We also grab back the focus. See #1588. - new GrabBackFocus + checkIfEnabledForUrl() if windowIsFocused() # Exported to window, but only for DOM tests. window.refreshCompletionKeys = (response) -> |
