WoWInterface SVN PhanxConfigWidgets

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 181 to Rev 182
    Reverse comparison

Rev 181 → Rev 182

trunk/PhanxConfig-Dropdown/PhanxConfig-Dropdown.lua
80,8 → 80,8
end
 
local function Frame_OnHide(self)
if self.dropdown.list then
self.dropdown.list:Hide()
if self.list then
self.list:Hide()
end
end
 
96,7 → 96,7
 
local callback = dropdown.OnValueChanged or dropdown.Callback
if callback then
callback(dropdown, self.value)
callback(dropdown, self.value, self:GetText())
end
 
PlaySound("UChatScrollButton")
238,8 → 238,7
end
 
local id = 0
function CreateList(parent) -- local
local dropdown = parent
function CreateList(dropdown) -- local
if dropdown.list then
return dropdown.list
end