Fix sorting options the Jimmy boy broked.
ackis [03-19-09 - 21:03]
Fix sorting options the Jimmy boy broked.
diff --git a/ARLConfig.lua b/ARLConfig.lua
index 75c53c4..c2adbfc 100644
--- a/ARLConfig.lua
+++ b/ARLConfig.lua
@@ -1137,7 +1137,7 @@ local function fullOptions()
desc = L["SORTING_DESC"],
get = function() return addon.db.profile.sorting end,
set = function(info,name) addon.db.profile.sorting = name end,
- values = function() return {Name = L["Name"], Skill = L["Skill"], Acquisition = L["Acquisition"], Location = L["Location"]} end,
+ values = function() return {Name = L["Name"], SkillAsc = L["Skill (Asc)"], SkillDesc = L["Skill (Desc)"], Acquisition = L["Acquisition"], Location = L["Location"]} end,
},
spacer3 = {
order = 50,
diff --git a/ARLFrame.lua b/ARLFrame.lua
index 745586d..dfc1592 100644
--- a/ARLFrame.lua
+++ b/ARLFrame.lua
@@ -3314,7 +3314,7 @@ end
-- Input:
-- Output:
-local function ARL_DD_Sort_OnClick( button, value )
+local function ARL_DD_Sort_OnClick(button, value)
CloseDropDownMenus()
addon.db.profile.sorting = value
ARL_DD_SortText:SetText( L["Sort"] .. ": " .. value )
diff --git a/AckisRecipeList.lua b/AckisRecipeList.lua
index 72988c6..a04551f 100644
--- a/AckisRecipeList.lua
+++ b/AckisRecipeList.lua
@@ -144,7 +144,7 @@ function addon:OnInitialize()
},
-- Sorting Options
- sorting = L["Skill"],
+ sorting = L["Skill (Asc)"],
-- Display Options
includefiltered = false,