WoWInterface SVN bdCore

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 4 to Rev 5
    Reverse comparison

Rev 4 → Rev 5

trunk/config/defaults.lua
28,6 → 28,17
green = {.1, .7, 0.3, 1},
}
 
bdCore.generalconfig = {}
bdCore.generalconfig[#bdCore.generalconfig+1] = {border = {
type = "slider",
label = "Border Width",
step = 1,
value = 2,
min = 0,
max = 4,
--callback = function() bdCore:redraw() end
}}
 
bdCore.whitelistconfig = {
[1] = {intro = {
type = "text",
trunk/functions.lua
111,6 → 111,10
end
end
 
function bdCore:redraw()
bdCore:triggerEvent("bdcore_redraw")
end
 
--
function bdCore:colorGradient(perc)
if perc > 1 then perc = 1 end