1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 19:22:25 +01:00

fix broken :set! regression

This commit is contained in:
Doug Kearns
2008-09-18 12:50:39 +00:00
parent 23492c82e7
commit 314fba44aa

View File

@@ -903,7 +903,7 @@ liberator.Options = function () //{{{
if ((!onlyNonDefault || userValue) && pref.indexOf(filter) >= 0) if ((!onlyNonDefault || userValue) && pref.indexOf(filter) >= 0)
{ {
name = pref; name = pref;
value = this.getPref(name); value = liberator.options.getPref(name);
if (typeof value == "string") if (typeof value == "string")
value = value.substr(0, 100).replace(/\n/g, " "); value = value.substr(0, 100).replace(/\n/g, " ");