diff --git a/ElvUI_EltreumUI/ElvUI_EltreumUI_Mainline.toc b/ElvUI_EltreumUI/ElvUI_EltreumUI_Mainline.toc index 684c30ef4..a43285d0a 100644 --- a/ElvUI_EltreumUI/ElvUI_EltreumUI_Mainline.toc +++ b/ElvUI_EltreumUI/ElvUI_EltreumUI_Mainline.toc @@ -1,6 +1,6 @@ ## Interface: 90105 ## Author: Eltreum -## Version: 2.7.4 +## Version: 2.7.5 ## Title: |cff1784d1ElvUI|r Eltruism ## Notes: Eltruism is an ElvUI plugin with profiles and other features not available in ElvUI ## Dependencies: ElvUI, AddOnSkins diff --git a/ElvUI_EltreumUI/ElvUI_EltreumUI_TBC.toc b/ElvUI_EltreumUI/ElvUI_EltreumUI_TBC.toc index 39193f019..9064352dc 100644 --- a/ElvUI_EltreumUI/ElvUI_EltreumUI_TBC.toc +++ b/ElvUI_EltreumUI/ElvUI_EltreumUI_TBC.toc @@ -1,6 +1,6 @@ ## Interface: 20503 ## Author: Eltreum -## Version: 2.7.4 +## Version: 2.7.5 ## Title: |cff1784d1ElvUI|r Eltruism TBC ## Notes: Eltruism is an ElvUI plugin with profiles and other features not available in ElvUI ## Dependencies: ElvUI, AddOnSkins diff --git a/ElvUI_EltreumUI/ElvUI_EltreumUI_Vanilla.toc b/ElvUI_EltreumUI/ElvUI_EltreumUI_Vanilla.toc index 4926d3aed..3091282c5 100644 --- a/ElvUI_EltreumUI/ElvUI_EltreumUI_Vanilla.toc +++ b/ElvUI_EltreumUI/ElvUI_EltreumUI_Vanilla.toc @@ -1,6 +1,6 @@ ## Interface: 11401 ## Author: Eltreum -## Version: 2.7.4 +## Version: 2.7.5 ## Title: |cff1784d1ElvUI|r Eltruism Classic ## Notes: Eltruism is an ElvUI plugin with profiles and other features not available in ElvUI ## Dependencies: ElvUI, AddOnSkins diff --git a/ElvUI_EltreumUI/Modules/Skins/ExpandedTalents.lua b/ElvUI_EltreumUI/Modules/Skins/ExpandedTalents.lua index d9bc5f563..2678ac196 100644 --- a/ElvUI_EltreumUI/Modules/Skins/ExpandedTalents.lua +++ b/ElvUI_EltreumUI/Modules/Skins/ExpandedTalents.lua @@ -1,7 +1,5 @@ local ElvUI_EltreumUI, E, L, V, P, G = unpack(select(2, ...)) local _G = _G -local IsAddOnLoaded = _G.IsAddOnLoaded -local LoadAddOn = _G.LoadAddOn function ElvUI_EltreumUI:ExpandedTalents() --Reskin Blizzard Talent frame for TBC diff --git a/ElvUI_EltreumUI/Modules/Skins/Shadows.lua b/ElvUI_EltreumUI/Modules/Skins/Shadows.lua index 0b9130480..776b6f3b3 100644 --- a/ElvUI_EltreumUI/Modules/Skins/Shadows.lua +++ b/ElvUI_EltreumUI/Modules/Skins/Shadows.lua @@ -1004,11 +1004,11 @@ hooksecurefunc(AB, 'StyleButton', ElvUI_EltreumUI.ActionBarShadows) --action ba benik's statusbar tooltip method, basically the same local TT = E:GetModule('Tooltip') function ElvUI_EltreumUI:TooltipStatusbarShadow(tt) - if not tt.StatusBar then return end + if not tt.StatusBar then return end - if not tt.StatusBar.backdrop.shadow then - tt.StatusBar.backdrop:CreateShadow() - end + if not tt.StatusBar.backdrop.shadow then + tt.StatusBar.backdrop:CreateShadow() + end end hooksecurefunc(TT, "GameTooltip_SetDefaultAnchor", ElvUI_EltreumUI.TooltipStatusbarShadow) ]]