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

Fix key processing bug.

This commit is contained in:
Kris Maglione
2011-03-12 19:27:28 -05:00
parent 6aeab66e88
commit cffbae4e1b

View File

@@ -121,7 +121,7 @@ var ProcessorStack = Class("ProcessorStack", {
if (result === Events.PASS)
events.feedevents(null, list.slice(0, length), { skipmap: true, isMacro: true, isReplay: true });
if (list.length > length)
if (list.length > length && this.processors.length === 0)
events.feedevents(null, list.slice(length));
}