We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 418c5a7 commit 0b270beCopy full SHA for 0b270be
TipHooker.lua
@@ -83,6 +83,19 @@ local function InitializeHook()
83
tooltipNeedsRepaint[self] = nil
84
end)
85
end
86
+
87
+ for i = 1, 30 do
88
+ local fontString = _G[tooltipName .. "TextLeft" .. i]
89
+ if not fontString then
90
+ local left = tooltip:CreateFontString()
91
+ local right = tooltip:CreateFontString()
92
+ tooltip:AddFontStrings(left, right)
93
+ local leftName = tooltipName .. "TextLeft" .. i
94
+ local rightName = tooltipName .. "TextRight" .. i
95
+ _G[leftName] = left
96
+ _G[rightName] = right
97
+ end
98
99
100
101
initialized = true
0 commit comments