- big giant options screen usability cleanup:

- colorized the FAQ and Module Settings description text to be more readable
- removed custom coloring from certain options that didn't match the rest
- hid a few debug-only settings
- consolidated all the 'create custom module' buttons into a drop-down + create button
- clarified description of some options so that their intent/purpose is more clear
- moved around/cleaned up headers for consistency
- doubled the width of long options so that they don't get cut off and ...'d
This commit is contained in:
Parnic
2010-09-12 22:36:02 +00:00
parent cc9dbc283e
commit 1961b66f57
25 changed files with 367 additions and 446 deletions

View File

@ -132,7 +132,7 @@ local SilenceCCList = {
50613,
-- Arcane Torrent
28730,
-- Arcane Torrent
-- Arcane Torrent
25046,
-- Improved Kick
13867,
@ -249,6 +249,7 @@ function TargetCC.prototype:GetDefaultSettings()
settings["enabled"] = false
settings["shouldAnimate"] = false
settings["hideAnimationSettings"] = true
settings["desiredLerpTime"] = nil
settings["lowThreshold"] = 0
settings["side"] = IceCore.Side.Left
@ -263,8 +264,6 @@ end
function TargetCC.prototype:GetOptions()
local opts = TargetCC.super.prototype.GetOptions(self)
opts["shouldAnimate"] = nil
opts["desiredLerpTime"] = nil
opts["lowThreshold"] = nil
opts["textSettings"].args["upperTextString"] = nil
opts["textSettings"].args["lowerTextString"] = nil
@ -288,6 +287,7 @@ function TargetCC.prototype:GetOptions()
type = 'toggle',
name = 'Only show for my debuffs',
desc = 'With this checked, the bar will only activate for your own CC spells and not those of others.',
width = 'double',
get = function()
return self.moduleSettings.onlyShowForMyDebuffs
end,
@ -299,9 +299,9 @@ function TargetCC.prototype:GetOptions()
end,
}
return opts
return opts
end
-- 'Protected' methods --------------------------------------------------------
function TargetCC.prototype:GetMaxDebuffDuration(unitName, debuffNames)