diff --git a/Data/Defaults.lua b/Data/Defaults.lua index 62b5d01..e8b3cee 100644 --- a/Data/Defaults.lua +++ b/Data/Defaults.lua @@ -183,7 +183,7 @@ Defaults.Colors = { healAbsorb = { texture = "Interface\\AddOns\\Cell\\Media\\shield", color = { 1, 0.1, 0.1, 1 }, - overShield = { 1, 1, 1, 1 }, + overAbsorb = { 1, 1, 1, 1 }, invertColor = false, } } @@ -253,7 +253,7 @@ Defaults.ColorsMenuOrder = { healAbsorb = { { "texture", "texture" }, { "color", "rgb" }, - { "overShield", "rgb" }, + { "overAbsorb", "rgb" }, { "invertColor", "toggle" }, } } diff --git a/Locales/enUS.lua b/Locales/enUS.lua index 2f0eeaf..c8ec059 100644 --- a/Locales/enUS.lua +++ b/Locales/enUS.lua @@ -5,6 +5,9 @@ local CUF = select(2, ...) local L = Cell.L CUF.L = L +-- Forwards from Cell +L.invertColor = L["Invert Color"] + -- Tabs L.unitFramesTab = "Unit Frames" L.generalTab = "General" @@ -238,6 +241,7 @@ L.essence = "Essence" L.classResources = "Class Resources" L.useClassColorForPet = "Use Class Color for Pet" L.overShield = "Overshield" +L.overAbsorb = "Overabsorb" L.reaction = "Reaction" L.friendly = "Friendly" diff --git a/Widgets/Bars/HealAbsorb.lua b/Widgets/Bars/HealAbsorb.lua index d98bef2..68c59d9 100644 --- a/Widgets/Bars/HealAbsorb.lua +++ b/Widgets/Bars/HealAbsorb.lua @@ -222,7 +222,7 @@ function W:CreateHealAbsorb(button) end tex:SetVertexColor(unpack(colors.color)) - overAbsorbGlow:SetVertexColor(unpack(colors.overShield)) + overAbsorbGlow:SetVertexColor(unpack(colors.overAbsorb)) healAbsorb.absorbInvertColor = colors.invertColor end