oh, hah. you moved the action bars — or are using another bar mod in tandem with modui?
in any case, the tooltip is designed to parent to the end of the action bars, and shifts its offset depending on a number of factors (including whether the bag is open, or how many extra action bars are shown). to counteract this, you can change
this entire function (lines 103-131) to:
- Code: Select all
local movetip = function() -- TOOLTIP
local type = GameTooltip:GetAnchorType()
if type == 'ANCHOR_NONE' then
GameTooltip:ClearAllPoints()
GameTooltip:SetPoint('BOTTOMRIGHT', UIParent, -CONTAINER_OFFSET_X - 18, CONTAINER_OFFSET_Y)
end
end
which will position it back towards the bottom right of the screen