kapresoft / wow-addon-actionbar-plus

Action Bar Plus Addon for World of Warcraft
5 stars 1 forks source link

Toy Tooltip Incorrect #390

Closed nfet closed 5 months ago

nfet commented 5 months ago

Toy tooltip is showing the "item" part of the tooltip, not the toy.

image

nfet commented 5 months ago

Here's the potential fix:

if itemInfo and itemInfo.id then
    if itemInfo:isToy() then
        GameTooltip:SetToyByItemID(itemInfo.id)
    else
        GameTooltip:SetItemByID(itemInfo.id)
    end
end

See: https://github.com/kapresoft/wow-addon-actionbar-plus/blob/0b6db73a5de224be106bbc9285dd2b70fa04600a/Core/Lib/Widget/Buttons/ItemDragEventHandler.lua#L117-L119