1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 10:27:59 +01:00

Fix option serialization again.

This commit is contained in:
Kris Maglione
2010-10-13 16:39:47 -04:00
parent b8a2d4d3f2
commit 16b3657042

View File

@@ -1362,7 +1362,7 @@ const Options = Module("options", {
: opt.name + "=" + opt.stringify(opt.value)] : opt.name + "=" + opt.stringify(opt.value)]
} }
for (opt in options) for (opt in options)
if (!opt.getter && opt.isDefault && (opt.scope & Option.SCOPE_GLOBAL)) if (!opt.getter && !opt.isDefault && (opt.scope & Option.SCOPE_GLOBAL))
] ]
} }
} }