WoWInterface SVN SplitItemsOnTheFly

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 12 to Rev 13
    Reverse comparison

Rev 12 → Rev 13

core.lua
3,7 → 3,7
##Subfile : core.lua
##Author : Hati-EK
--]]
local SplitItemsOnTheFly = { }
SplitItemsOnTheFly = { }
local SI = SplitItemsOnTheFly
SI.name = 'SplitItemsOnTheFly'
SI.ver = GetAddOnMetadata( SI.name, 'Version')
43,6 → 43,9
end
self.text:SetText(c)
else
if MerchantFrame:IsShown() then
SI.handler:UnregisterEvent('CURSOR_UPDATE')
end
if not i then
c=arg1%SI.count
else
70,6 → 73,9
end
self.text:SetText(c)
end
if MerchantFrame:IsShown() then
SI.handler:RegisterEvent('CURSOR_UPDATE')
end
end
end)
 
153,6 → 159,8
SI.Cursor:EnableMouseWheel(0)
SI.buyIndex=nil
SI.throttle=false
else --so maybe it's called from item split (in bags)
events:ITEM_LOCK_CHANGED(SI.bagID,SI.bagSlot)
end
end
end