Had issues where the tooltip would block clicks, or prevent selection of elements on the click or right-click menu. I added an additional configuration item, and logic for suppressing the tooltips. Giving you the two snippets.
config.lua: 25
showTool = {
order = orderCount(),
type = "toggle",
name = "Show Tooltip",
desc = "Show the tooltip on the broker button.",
descStyle = "inline",
},
TalentLoadoutBroker*.lua
OnTooltipShow = function(tooltip)
if TLB.db.showTool then
TLB:OnTooltipShow(tooltip);
end
end,
Had issues where the tooltip would block clicks, or prevent selection of elements on the click or right-click menu. I added an additional configuration item, and logic for suppressing the tooltips. Giving you the two snippets.
config.lua: 25
TalentLoadoutBroker*.lua