- disabled "draw raid icon on top" option if "show raid icon" is disabled

This commit is contained in:
Parnic
2008-02-10 22:55:31 +00:00
parent 0019ec9734
commit 8dcfdf1704

View File

@ -139,7 +139,7 @@ function TargetHealth.prototype:GetOptions()
self:UpdateRaidTargetIcon() self:UpdateRaidTargetIcon()
end, end,
disabled = function() disabled = function()
return not self.moduleSettings.enabled return not self.moduleSettings.enabled or not self.moduleSettings.showRaidIcon
end, end,
order = 51 order = 51
} }