Skip to content

Suppress Tool tip option #11

Description

@devoid42

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,

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions