From 2a91d2aa120615a852d3d9bfdf2002d56bf4e22b Mon Sep 17 00:00:00 2001 From: fuzion Date: Wed, 29 Sep 2010 02:12:02 -0500 Subject: [PATCH] unbreak glowColor (wasn't a typo afterall) --- src/Theme.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Theme.py b/src/Theme.py index 236d7333c..3d92fa46e 100644 --- a/src/Theme.py +++ b/src/Theme.py @@ -136,7 +136,7 @@ def get(value, type = str, default = None): #since the original Frets on Fire. What glow_color allows you to do is set it so #the glow is either the color of the fret it's over or it can be the color the image #actually is (if the image is white then no matter what key is hit the glow will be white) - self.glowColor = get("glow_color", str, "frets") + self.glowColor = get("glow_color", str, "fret") if not self.glowColor == "frets": self.glowColor = self.hexToColor(self.glowColor)