Kayakflo / wow-dialogkey-sl

Adjusted version of the original wow-dialog key addon to work with WoW Shadowlands
GNU General Public License v3.0
9 stars 3 forks source link

texture fix and sort error #4

Closed jisamcom closed 3 years ago

jisamcom commented 3 years ago

gossip texture uses counter slashes... ( quest one uses slashes ) and got sort error

jisamcom commented 3 years ago

line 247 ~ 248

                        GossipFrame_GetTitleButton(i).Icon:GetTexture() == "Interface\\GossipFrame\\ActiveQuestIcon" or
                        GossipFrame_GetTitleButton(i).Icon:GetTexture() == "Interface\\GossipFrame\\ActiveLegendaryQuestIcon") then

line 347 ~ 357

    --[[
    table.sort(frames,function(a,b)
        if a.top > b.top then
            return 1
        elseif a.top < b.top then
            return -1
        end

        return 0
    end)
    ]]--
jisamcom commented 3 years ago

created pull request