WoWInterface SVN PhanxWatchFrame

Compare Revisions

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

Rev 16 → Rev 17

Animations.lua
15,14 → 15,15
fadeGroup:SetScript("OnFinished", function(self) WatchFrame:SetAlpha(self.targetAlpha) end)
WatchFrame:SetAlpha(FADE_OUT_ALPHA)
 
local pcall = pcall
local descendants = setmetatable({}, { __index = function(t, f)
local parent = f:GetParent()
while parent do
local ok, parent = pcall(f.GetParent, f) -- stupid fucking StoreFrame
while ok and parent do
if parent == WatchFrame then
t[f] = true
return true
end
parent = parent:GetParent()
ok, parent = pcall(parent.GetParent, parent)
end
t[f] = false
return false
PhanxWatchFrame.toc
1,5 → 1,5
## Interface: 50400
## Version: 5.4.1.wowi:revision
## Version: 5.4.2.wowi:revision
 
## Notes: Moves the watch frame, makes it wider, hides the header, fades in on mouseover.