1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-18 08:43:31 +02:00

Fix missing bracing in last commit.

This commit is contained in:
Kris Maglione
2011-01-18 02:28:34 -05:00
parent 328c78b842
commit 53248645c2

View File

@@ -960,7 +960,8 @@ var Events = Module("events", {
if (overrideMode) if (overrideMode)
processors = [Events.KeyProcessor(overrideMode, mode.extended)]; processors = [Events.KeyProcessor(overrideMode, mode.extended)];
else for (let m in keyModes.iterValues()) else {
for (let m in keyModes.iterValues())
if (m) if (m)
processors.push(Events.KeyProcessor(m, mode.extended)); processors.push(Events.KeyProcessor(m, mode.extended));
@@ -978,6 +979,7 @@ var Events = Module("events", {
return mode.params.onEvent(event) === false; return mode.params.onEvent(event) === false;
}; };
} }
}
const KILL = true, PASS = false, WAIT = null; const KILL = true, PASS = false, WAIT = null;