Skip to content

Commit ecb7630

Browse files
committed
- implemented workaround for bug in RaiderIO regarding anchor positioning: RaiderIO/raiderio-addon#203
1 parent 0b5ef6c commit ecb7630

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

TipTac/ttCore.lua

+7
Original file line numberDiff line numberDiff line change
@@ -960,6 +960,13 @@ local function GetAnchorPosition(tooltip)
960960
return "normal", "BOTTOMRIGHT";
961961
end
962962

963+
-- workaround for bug in RaiderIO: https://github.com/RaiderIO/raiderio-addon/issues/203
964+
if (var == "anchorFrameTip") and (ttAnchorType == "mouse") and (IsAddOnLoaded("RaiderIO")) and IsAddOnLoaded("Blizzard_Communities") and (IsInFrameChain(tooltip:GetOwner(), {
965+
CommunitiesFrame.MemberList.ListScrollFrame
966+
}, 3)) then
967+
return "normal", "BOTTOMRIGHT";
968+
end
969+
963970
-- override GTT anchor for (Guild & Community) ChatFrame
964971
if (cfg.enableAnchorOverrideCF) and (IsInFrameChain(tooltip:GetOwner(), {
965972
"ChatFrame(%d+)",

0 commit comments

Comments
 (0)