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

Fix mappings.iterate.

This commit is contained in:
Doug Kearns
2011-01-24 14:19:55 +11:00
parent de2655ce01
commit 162d9122b2

View File

@@ -304,7 +304,7 @@ var Mappings = Module("mappings", {
iterate: function (mode) {
let seen = {};
for (let hive in this.hives.iterValues())
for (let map in hive.getStack(mode).iterValues())
for (let map in array(hive.getStack(mode)).iterValues())
if (!set.add(seen, map.name))
yield map;
},