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:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user