fix(tooltip): remove misleading data-source attribution line

The Source: line cannot accurately reflect per-pin provenance without
changing every spawn registration site. Until that infrastructure
exists, the label is misleading — showing Questie DB even when data
came from the learner, or Learner when it came from AscensionDB.
Remove from both MapIconTooltip (world-map pins) and Tooltip
(unit/object hover).
This commit is contained in:
Xurkon
2026-06-08 21:40:10 -05:00
parent 6a4f715b76
commit f9a3301584
2 changed files with 3 additions and 40 deletions
+1 -5
View File
@@ -70,11 +70,7 @@ local DEFAULT_WAYPOINT_HOVER_COLOR = { 0.93, 0.46, 0.13, 0.8 }
local lastTooltipShowTimestamp = GetTime()
local function _GetWorldMapTooltipSourceLine()
local parts = { "Questie DB" }
if QuestieComms and (QuestieComms.remotePlayerEnabled or QuestieComms.data) then
tinsert(parts, "Comms")
end
return "|cFF808080Source: " .. table.concat(parts, " + ") .. "|r"
return nil
end
function MapIconTooltip:Show()