From bc8136ab08cf7a8731f9f9284d2fcbf4263710f3 Mon Sep 17 00:00:00 2001 From: Jim-Bim Date: Sat, 26 Sep 2009 14:44:15 +0000 Subject: [PATCH] AckisRecipeList: - fixed the collapse header feature - it works now, too! - and ARL only expands headers which are collapsed --- AckisRecipeList.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/AckisRecipeList.lua b/AckisRecipeList.lua index b5a7a1f..86ef884 100644 --- a/AckisRecipeList.lua +++ b/AckisRecipeList.lua @@ -794,10 +794,8 @@ do -- Expand all headers so we can see all the recipes there are for i = GetNumTradeSkills(), 1, -1 do local name, tradeType, _, isExpanded = GetTradeSkillInfo(i) - if isExpanded then + if tradeType == "header" and (not isExpanded) then headerlist[name] = true - end - if tradeType == "header" then ExpandTradeSkillSubClass(i) end end -- 1.7.9.5