Mercurial > wow > ouroloot
diff AceGUIWidget-CheckBoxSmallLabel.lua @ 102:fe04f5c4114a
- expiring cache callback arg, handle new entries coming in during the
same loop at the previous ones ALL being removed
TODO: rework other "candidate" caches to use this instead
- raider snapshots use string tokens for 'online' field
- document callback args
- CheckBoxSmallLabel preemptively apply proposed fix for ace3 ticket 304
- now that option toggles are not wedged into tight space, revert to
using standard CheckBox widget instead of small-label variant
(go back if ticket 304 is not fixed for release)
author | Farmbuyer of US-Kilrogg <farmbuyer@gmail.com> |
---|---|
date | Sat, 04 Aug 2012 22:03:05 +0000 |
parents | 822b6ca3ef89 |
children |
line wrap: on
line diff
--- a/AceGUIWidget-CheckBoxSmallLabel.lua Wed Aug 01 06:51:52 2012 +0000 +++ b/AceGUIWidget-CheckBoxSmallLabel.lua Sat Aug 04 22:03:05 2012 +0000 @@ -111,6 +111,9 @@ self.frame:Disable() self.text:SetTextColor(0.5, 0.5, 0.5) SetDesaturation(self.check, true) + if self.desc then + self.desc:SetTextColor(0.5, 0.5, 0.5) + end else self.frame:Enable() self.text:SetTextColor(1, 1, 1) @@ -119,6 +122,9 @@ else SetDesaturation(self.check, false) end + if self.desc then + self.desc:SetTextColor(1, 1, 1) + end end end,