From 405ef3272198ba53e77df3159e6e40ef681bee62 Mon Sep 17 00:00:00 2001 From: Tekkub Date: Thu, 27 Aug 2009 01:53:55 -0600 Subject: [PATCH] Fix gold and token items anchoring --- GnomishVendorShrinker.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GnomishVendorShrinker.lua b/GnomishVendorShrinker.lua index bd995ab..85a7cbc 100644 --- a/GnomishVendorShrinker.lua +++ b/GnomishVendorShrinker.lua @@ -120,7 +120,7 @@ local function GetAltCurrencyFrame(frame) local anchor = #frame.altframes > 0 and frame.altframes[#frame.altframes].text local f = CreateFrame('Frame', nil, frame) f:SetWidth(ICONSIZE) f:SetHeight(ICONSIZE) - f:SetPoint("RIGHT", anchor or frame.popout, "LEFT") + f:SetPoint("RIGHT", anchor or frame.ItemPrice, "LEFT") f.icon = f:CreateTexture() f.icon:SetWidth(ICONSIZE) f.icon:SetHeight(ICONSIZE)