Skip to content

Commit

Permalink
- prevented auras from moving off-screen
Browse files Browse the repository at this point in the history
  • Loading branch information
frozn committed May 28, 2024
1 parent df3ae0e commit 52e308d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TipTac/modules/ttAuras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function ttAuras:SetupTipsAuras(tip)
end

-- prevent auras from moving off-screen
if (offsetForClampRectInsets > 0) and (tip:IsClampedToScreen()) then
if (offsetForClampRectInsets > 0) then
local leftOffset, rightOffset, topOffset, bottomOffset = tip:GetClampRectInsets();

if (cfg.aurasAtBottom) then
Expand Down

0 comments on commit 52e308d

Please sign in to comment.