AckisRecipeList:
Jim-Bim [12-09-08 - 21:56]
AckisRecipeList:
- fixed right side placement of scan button
- slightly tweaked left position of scan button
diff --git a/ARLConfig.lua b/ARLConfig.lua
index 8f1f510..ce48267 100644
--- a/ARLConfig.lua
+++ b/ARLConfig.lua
@@ -1071,7 +1071,7 @@ local function fullOptions()
desc = L["SCANBUTTONPOSITION_DESC"],
get = function() return addon.db.profile.scanbuttonlocation end,
set = function(info,name) addon.db.profile.scanbuttonlocation = name end,
- values = function() return {Risght = L["Right"], Left = L["Left"]} end,
+ values = function() return {Right = L["Right"], Left = L["Left"]} end,
},
uiscale = {
order = 30,
diff --git a/ARLFrame.lua b/ARLFrame.lua
index 5075035..1e40dbe 100644
--- a/ARLFrame.lua
+++ b/ARLFrame.lua
@@ -1175,7 +1175,7 @@ function addon:ShowScanButton()
if (loc == L["Right"]) then
addon.ScanButton:SetPoint("RIGHT",TradeSkillFrameCloseButton,"LEFT",4,0)
elseif (loc == L["Left"]) then
- addon.ScanButton:SetPoint("LEFT",TradeSkillFramePortrait,"RIGHT",4,0)
+ addon.ScanButton:SetPoint("LEFT",TradeSkillFramePortrait,"RIGHT",2,12)
end
addon.ScanButton:SetWidth(addon.ScanButton:GetTextWidth() + 10)