From b755313d2f2924987e39ce315e4f37290b28e13b Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Sat, 27 Mar 2010 00:54:07 -0400 Subject: [PATCH] In ExpandSeasonalData(): Use the "seasonal" color. --- Frame.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Frame.lua b/Frame.lua index 8e20881..42fcdcb 100644 --- a/Frame.lua +++ b/Frame.lua @@ -3061,7 +3061,8 @@ do local parent_entry = GetParentEntry(entry_index, entry_type) local t = AcquireTable() - t.text = string.format("%s%s %s", PADDING, hide_type and "" or SEASONAL_CATEGORY..":", private.seasonal_list[id_num].name) + t.text = string.format("%s%s %s", PADDING, hide_type and "" or SetTextColor(CATEGORY_COLORS["seasonal"], SEASONAL_CATEGORY)..":", + SetTextColor(CATEGORY_COLORS["seasonal"], private.seasonal_list[id_num].name)) t.recipe_id = recipe_id return ListFrame:InsertEntry(t, parent_entry, entry_index, entry_type, true) -- 1.7.9.5