From e785a1e1ca725e38fb5097a7b957c73fba59f0f0 Mon Sep 17 00:00:00 2001 From: Parnic Date: Mon, 27 Jul 2009 05:31:38 +0000 Subject: [PATCH] - fixed custom textures not applying to "low threshold" or "cast lag indicator" sections of various modules --- IceUnitBar.lua | 2 +- modules/CastBar.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/IceUnitBar.lua b/IceUnitBar.lua index 118b881..d279cdb 100644 --- a/IceUnitBar.lua +++ b/IceUnitBar.lua @@ -174,7 +174,7 @@ function IceUnitBar.prototype:CreateFlashFrame() self.flashFrame.flash = self.flashFrame:CreateTexture(nil, "BACKGROUND") end - self.flashFrame.flash:SetTexture(IceElement.TexturePath .. self.settings.barTexture) + self.flashFrame.flash:SetTexture(IceElement.TexturePath .. self:GetMyBarTexture()) self.flashFrame.flash:SetBlendMode("ADD") self.flashFrame.flash:SetAllPoints(self.flashFrame) diff --git a/modules/CastBar.lua b/modules/CastBar.lua index 01dcec0..ea7ca6e 100644 --- a/modules/CastBar.lua +++ b/modules/CastBar.lua @@ -380,7 +380,7 @@ function CastBar.prototype:CreateLagBar() self.lagBar.bar = self.lagBar:CreateTexture(nil, "BACKGROUND") end - self.lagBar.bar:SetTexture(IceElement.TexturePath .. self.settings.barTexture) + self.lagBar.bar:SetTexture(IceElement.TexturePath .. self:GetMyBarTexture()) self.lagBar.bar:SetAllPoints(self.lagBar) self.lagBar:SetStatusBarTexture(self.lagBar.bar)