WoWInterface SVN PhanxWatchFrame

Compare Revisions

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

Rev 17 → Rev 16

Animations.lua
15,15 → 15,14
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 ok, parent = pcall(f.GetParent, f) -- stupid fucking StoreFrame
while ok and parent do
local parent = f:GetParent()
while parent do
if parent == WatchFrame then
t[f] = true
return true
end
ok, parent = pcall(parent.GetParent, parent)
parent = parent:GetParent()
end
t[f] = false
return false
PhanxWatchFrame.toc
1,5 → 1,5
## Interface: 50400
## Version: 5.4.2.wowi:revision
## Version: 5.4.1.wowi:revision
 
## Notes: Moves the watch frame, makes it wider, hides the header, fades in on mouseover.