In FormatRecipeText(): Convert a color I missed last time.
James D. Callahan III [03-26-10 - 06:47]
In FormatRecipeText(): Convert a color I missed last time.
diff --git a/Frame.lua b/Frame.lua
index d5c80d0..0f74979 100644
--- a/Frame.lua
+++ b/Frame.lua
@@ -2602,7 +2602,7 @@ do
level_text = string.format(SetTextColor(difficulty["optimal"], SKILL_LEVEL_FORMAT), recipe_level)
else
addon:Debug("Skill level color fallback: %s.", recipe_string)
- level_text = string.format(addon:MidGrey(SKILL_LEVEL_FORMAT), recipe_level)
+ level_text = string.format(SetTextColor(difficulty["trivial"], SKILL_LEVEL_FORMAT), recipe_level)
end
local sort_type = addon.db.profile.sorting
local skill_sort = (sort_type == "SkillAsc" or sort_type == "SkillDesc")