We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e18b155 commit e1f421fCopy full SHA for e1f421f
Broker.lua
@@ -113,13 +113,15 @@ function obj:OnClick(button)
113
end
114
115
function obj:OnEnter()
116
+ KT:DebugMsg("Broker OnEnter")
117
GameTooltip:SetOwner(self --[[@as Frame]], "ANCHOR_NONE")
118
GameTooltip:SetPoint("TOPLEFT", self, "BOTTOMLEFT")
119
KTB:UpdateTooltip()
120
tooltipVisible = true
121
122
123
function obj:OnLeave()
124
+ KT:DebugMsg("Broker OnLeave")
125
tooltipVisible = false
126
GameTooltip:Hide()
127
@@ -130,6 +132,7 @@ function KTB:UpdateText()
130
132
131
133
134
function KTB:UpdateTooltip()
135
+ KT:DebugMsg("Broker UpdateTooltip")
136
GameTooltip:ClearLines()
137
obj.OnTooltipShow(GameTooltip)
138
GameTooltip:Show()
0 commit comments