1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 13:14:12 +01:00

Fix missing base mode in keydown/keyup blocking. Closes issue #615.

--HG--
extra : rebase_source : d76a48e12e8a6f68a4adcb633008af786a4d826d
This commit is contained in:
Kris Maglione
2011-07-31 12:45:05 -04:00
parent b55b7445ab
commit 465e133cf7
3 changed files with 5 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ var ProcessorStack = Class("ProcessorStack", {
events.dbg("STACK " + mode);
let main = { __proto__: mode.main, params: mode.params };
this.modes = array([mode.params.keyModes, main, mode.main.allBases]).flatten().compact();
this.modes = array([mode.params.keyModes, main, mode.main.allBases.slice(1)]).flatten().compact();
if (builtin)
hives = hives.filter(function (h) h.name === "builtin");