From 464fe457d7a90253f7a18f258e08db5245098994 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Tue, 20 Apr 2010 23:00:45 -0400 Subject: [PATCH] Removed the "Skill" tab - this is now a view mode which works under all tabs. --- ARL.lua | 1 + Frame.lua | 7 +------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/ARL.lua b/ARL.lua index e4f6ff7..153fe33 100644 --- a/ARL.lua +++ b/ARL.lua @@ -208,6 +208,7 @@ function addon:OnInitialize() ------------------------------------------------------------------------------- sorting = "Ascending", current_tab = 3, -- Name tab + skill_view = false, -- Sort the recipes by skill level instead of name? ------------------------------------------------------------------------------- -- Display Options diff --git a/Frame.lua b/Frame.lua index 07c7ad2..41ba00f 100644 --- a/Frame.lua +++ b/Frame.lua @@ -123,14 +123,12 @@ local VIEW_TABS = { ["Acquisition"] = 1, ["Location"] = 2, ["Name"] = 3, - ["Skill"] = 4, } local TAB_NAMES = { "Acquisition", "Location", "Name", - "Skill", } ------------------------------------------------------------------------------- @@ -1076,13 +1074,11 @@ do local AcquireTab = CreateTab(1, L["Acquisition"], "TOPLEFT", MainPanel, "BOTTOMLEFT", 4, 3) local LocationTab = CreateTab(2, L["Location"], "LEFT", AcquireTab, "RIGHT", -14, 0) local NameTab = CreateTab(3, _G.NAME, "LEFT", LocationTab, "RIGHT", -14, 0) - local SkillTab = CreateTab(4, _G.SKILL, "LEFT", NameTab, "RIGHT", -14, 0) MainPanel.tabs = { AcquireTab, LocationTab, NameTab, - SkillTab, } MainPanel:Hide() end @@ -2984,8 +2980,7 @@ do addon:Debug("Skill level color fallback: %s.", recipe_string) level_text = string.format(SetTextColor(difficulty["trivial"], SKILL_LEVEL_FORMAT), recipe_level) end - local current_tab = addon.db.profile.current_tab - local skill_view = (current_tab == VIEW_TABS["Skill"]) + local skill_view = addon.db.profile.skill_view recipe_string = skill_view and string.format("%s - %s", level_text, recipe_string) or string.format("%s - %s", recipe_string, level_text) -- 1.7.9.5