WoWInterface SVN Snoopy

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 15 to Rev 16
    Reverse comparison

Rev 15 → Rev 16

Snoopy/Snoopy.toc
1,9 → 1,9
## Interface: 30200
## Interface: 30300
## Title: Snoopy
## Notes: Easy inspecting
## Author: TotalPackage
## X-Category: Interface Enhancements
## Version: 3.2.001
## Version: 3.3.001
 
## LoadManagers: AddonLoader
## X-LoadOn-Always: delayed
Snoopy/core.lua
166,8 → 166,9
HandleModifiedItemClick(cache[id])
end
end
local GetFrameType = a.GetFrameType or a.GetObjectType
for _, frame in ipairs({ InspectPaperDollFrame:GetChildren() }) do
if frame:GetFrameType() == "Button" and strmatch(frame:GetName() or "", "Inspect(.+)Slot") then
if GetFrameType(frame) == "Button" and strmatch(frame:GetName() or "", "Inspect(.+)Slot") then
frame:SetScript("OnClick", onclick)
frame:SetScript("OnEnter", InspectPaperDollItemSlotButton_OnEnter)
end