mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-21 16:41:28 +02:00
Fix missing bracing in last commit.
This commit is contained in:
@@ -960,7 +960,8 @@ var Events = Module("events", {
|
||||
|
||||
if (overrideMode)
|
||||
processors = [Events.KeyProcessor(overrideMode, mode.extended)];
|
||||
else for (let m in keyModes.iterValues())
|
||||
else {
|
||||
for (let m in keyModes.iterValues())
|
||||
if (m)
|
||||
processors.push(Events.KeyProcessor(m, mode.extended));
|
||||
|
||||
@@ -978,6 +979,7 @@ var Events = Module("events", {
|
||||
return mode.params.onEvent(event) === false;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
const KILL = true, PASS = false, WAIT = null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user