aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts
diff options
context:
space:
mode:
authorStephen Blott2015-02-08 09:18:50 +0000
committerStephen Blott2015-02-08 09:24:13 +0000
commit534e460f437ade1016ddff6d7ffa2c2e6b254b17 (patch)
tree99e68fc93037cb0f5f0684ff82dec1acfe2d8612 /background_scripts
parente7e88b10afe4329034db7a2320bc16235f25f081 (diff)
downloadvimium-534e460f437ade1016ddff6d7ffa2c2e6b254b17.tar.bz2
Incognito mode for find history.
- This commit is incomplete because, to progress, we need bc7db7473456713c8c84f324e71da93145ffa2a0.
Diffstat (limited to 'background_scripts')
-rw-r--r--background_scripts/main.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/main.coffee b/background_scripts/main.coffee
index c1c8dfc8..07127af9 100644
--- a/background_scripts/main.coffee
+++ b/background_scripts/main.coffee
@@ -382,7 +382,7 @@ root.updateActiveState = updateActiveState = (tabId) ->
setBrowserActionIcon(tabId,disabledIcon)
# Propagate the new state only if it has changed.
if (isCurrentlyEnabled != enabled || currentPasskeys != passKeys)
- chrome.tabs.sendMessage(tabId, { name: "setState", enabled: enabled, passKeys: passKeys })
+ chrome.tabs.sendMessage(tabId, { name: "setState", enabled: enabled, passKeys: passKeys, incognito: tab.incognito })
else
# We didn't get a response from the front end, so Vimium isn't running.
setBrowserActionIcon(tabId,disabledIcon)