From 1792b9a681403218db324ce26eb73f4323810c1f Mon Sep 17 00:00:00 2001 From: iceroth Date: Sun, 20 May 2007 08:55:31 +0000 Subject: [PATCH] Fix for channeling lag indicator positioning --- modules/CastBar.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/CastBar.lua b/modules/CastBar.lua index 3d79f1b..d625123 100644 --- a/modules/CastBar.lua +++ b/modules/CastBar.lua @@ -202,9 +202,9 @@ function CastBar.prototype:SpellCastChannelStart(unit) local y = self.settings.barHeight - (pos * self.settings.barHeight) if (self.moduleSettings.side == IceCore.Side.Left) then - self.lagBar.bar:SetTexCoord(1, 0, pos, 0) + self.lagBar.bar:SetTexCoord(1, 0, 1-pos, 1) else - self.lagBar.bar:SetTexCoord(0, 1, pos, 0) + self.lagBar.bar:SetTexCoord(0, 1, 1-pos, 1) end self.lagBar:SetPoint("BOTTOM", self.frame, "BOTTOM", 0, 0)