From 08161c077a5e182c3ff85617939be1f988565c05 Mon Sep 17 00:00:00 2001 From: KyrosKrane Date: Sun, 27 May 2018 03:02:55 -0500 Subject: [PATCH] Added a small tooltip to identify the addon. --- Broker_RaidMakeup.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Broker_RaidMakeup.lua b/Broker_RaidMakeup.lua index 5ff8ea5..f28e436 100644 --- a/Broker_RaidMakeup.lua +++ b/Broker_RaidMakeup.lua @@ -391,7 +391,11 @@ BRM.LDO = _G.LibStub("LibDataBroker-1.1"):NewDataObject("Broker_RaidMakeup", { value = "0", icon = BRM.MainIcon:GetIconString(), label = "Broker_RaidMakeup", - OnTooltipShow = function()end, + OnTooltipShow = function(tooltip) + if not tooltip or not tooltip.AddLine then return end + tooltip:AddLine("Broker_RaidMakeup") + tooltip:AddLine("Click to refresh") + end, }) -- BRM.LDO creation -- 1.7.9.5