From fe656f463da1a77f05fa0b619e2dc28fbf9af3d8 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sun, 20 Dec 2015 16:12:52 -0600 Subject: [PATCH] Lowered frame strata for the GCD bar There's no real reason to force this bar up into the TOOLTIP strata and have it draw on top of things. It can live in 'low' like every other part of the addon. --- modules/GlobalCoolDown.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/GlobalCoolDown.lua b/modules/GlobalCoolDown.lua index d6381f7..1474623 100644 --- a/modules/GlobalCoolDown.lua +++ b/modules/GlobalCoolDown.lua @@ -28,7 +28,7 @@ function GlobalCoolDown.prototype:Enable(core) self:Show(false) - self.frame:SetFrameStrata("TOOLTIP") + self.frame:SetFrameStrata("LOW") self.CDSpellId = self:GetSpellId() end