From bfc59828699c9f1d027c134172ed32e81246649f Mon Sep 17 00:00:00 2001 From: Jason Greer Date: Sat, 10 Aug 2024 09:44:59 -0400 Subject: [PATCH] add fix mentioned in issue #439 --- OmniCC/core/display.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OmniCC/core/display.lua b/OmniCC/core/display.lua index a6d34f0..ca0f638 100644 --- a/OmniCC/core/display.lua +++ b/OmniCC/core/display.lua @@ -141,7 +141,7 @@ function Display:UpdateActiveCooldown() -- reposition the display to be above the cooldown if cooldown then self:SetAllPoints(cooldown) - self:SetFrameLevel(cooldown:GetFrameLevel() + 7) + self:SetFrameLevel(cooldown:GetFrameLevel() + 507) self:UpdateCooldownTextFont() self:UpdateCooldownTextPositionSizeAndColor() end