Back to Home

ESO Lua File v100035

ingame/tooltip/notificationstooltips.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
function ZO_Tooltip:LayoutNotification(note, messageText)
    local bodySection = self:AcquireSection(self:GetStyle("bodySection"))
    if messageText then
        bodySection:AddLine(messageText, self:GetStyle("bodyDescription"))
    end
    if note then
        bodySection:AddLine(note, self:GetStyle("notificationNote"))
    end
    self:AddSection(bodySection)
end