1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 03:22:27 +01:00

Fix a slight bug in lazy highlight group loading.

This commit is contained in:
Kris Maglione
2010-11-17 19:38:55 -05:00
parent 5a618bee0e
commit a7eed221a2

View File

@@ -83,7 +83,7 @@ const Highlights = Module("Highlight", {
if (old && old.value != old.default)
obj.value = old.value;
if (!old && obj.base && obj.base.enabled)
if (!old && obj.base && obj.base.style.enabled)
obj.style.enabled = true;
else
this.loaded.__defineSetter__(obj.class, function () {