Skip to content

Commit 7e4e204

Browse files
committed
fix: pre skin the dt tooltip
1 parent a7e94ed commit 7e4e204

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Modules/Skins/Blizzard/Tooltips.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
local W, F, E, L = unpack((select(2, ...))) ---@type WindTools, Functions, ElvUI, table
22
local TT = E:GetModule("Tooltip")
3+
local DT = E:GetModule("DataTexts")
34
local S = W.Modules.Skins ---@type Skins
45

56
local _G = _G
@@ -109,13 +110,14 @@ function S:TooltipFrames()
109110
-- ours
110111
E.ConfigTooltip,
111112
E.SpellBookTooltip,
113+
DT.tooltip,
112114
-- libs
113115
_G.LibDBIconTooltip,
114116
_G.SettingsTooltip,
115117
}
116118

117119
for _, tt in pairs(tooltips) do
118-
if tt and tt ~= E.ScanTooltip and not tt.IsEmbedded and not tt:IsForbidden() then
120+
if tt and not tt.IsEmbedded and not tt:IsForbidden() then
119121
self:ReskinTooltip(tt)
120122
end
121123
end

0 commit comments

Comments
 (0)