aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Sukhar2010-12-14 01:59:51 -0800
committerIlya Sukhar2010-12-14 01:59:51 -0800
commit031b3453f1f34df0a6b3bc83d5e920d869b329e9 (patch)
treea788c33a0755b8d2f89d89822e724dfda267242b
parentb658a81acdf8b789cae1c464c2a4fbad5dbf7928 (diff)
downloadvimium-031b3453f1f34df0a6b3bc83d5e920d869b329e9.tar.bz2
Fixed a regression with completion key logic after the introduction of frame support. Closes #249.
-rw-r--r--background_page.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/background_page.html b/background_page.html
index ad15c2be..264cf299 100644
--- a/background_page.html
+++ b/background_page.html
@@ -552,7 +552,7 @@
// The second key might be a valid command by its self.
if (keyToCommandRegistry[splitKey.second])
- newKeyQueue = checkKeyQueue(splitKey.second);
+ newKeyQueue = checkKeyQueue(splitKey.second, tabId, frameId);
else
newKeyQueue = (validFirstKeys[splitKey.second] ? splitKey.second : "");
} else {