- user-submitted change care of JX:

Added mechanism to provide common throttled updates to all bars, even those that are hidden.
Added "Display when ready" option to Custom Cooldown bar to replace "Display when empty" toggle.
Modified Custom Cooldown bar to use common throttled updates. This should be rolled out to all bars eventually.
Tidied up display of spell icons in Custom Cooldown bar. There was a problem with the appropriate aura icon not being loaded correctly until the spell had fired.
This commit is contained in:
Parnic
2010-04-05 02:11:46 +00:00
parent e3f8fb3a49
commit 6d1ca7f55e
3 changed files with 198 additions and 63 deletions

View File

@ -591,6 +591,22 @@ IceHUD.options =
end,
order = 96
},
updatePeriod = {
type = 'range',
name = 'Update Period',
desc = 'Time between display updates in seconds',
get = function()
return IceHUD.IceCore:UpdatePeriod()
end,
set = function(v)
IceHUD.IceCore:SetUpdatePeriod(v)
end,
min = 0.01,
max = 1.0,
step = 0.01,
order = 97
},
}
}