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

Make @: work again.

This commit is contained in:
Kris Maglione
2011-02-14 05:13:40 -05:00
parent 4bb9ecd27d
commit 84b121c762

View File

@@ -133,10 +133,10 @@ var ProcessorStack = Class("ProcessorStack", {
if (callable(res))
actions.push(res);
if (isinstance(res, KeyProcessor))
processors.push(res);
if (res === Events.WAIT || input.waiting)
processors.push(input);
if (isinstance(res, KeyProcessor))
processors.push(res);
}
events.dbg("RESULT: " + (callable(result) ? {}.toString.call(result) : result) + " " + event.getPreventDefault());