AddOnSkins

10M Downloads

This error happens when I open the Dungeon and raid tool

ioprophet opened this issue ยท 1 comments

commented

RaiderIO-Addonskinserror

commented

Issue confirmed fixed by changing the following from this:

function AS:RaiderIO()
	if _G.RaiderIO_CustomDropDownListMenuBackdrop then
		AS:SkinTooltip(_G.RaiderIO_CustomDropDownListMenuBackdrop)
	end

	_G.PVEFrame:HookScript("OnShow", function(self)
		if not _G.RaiderIOProfileTooltip.IsSkinned then
			AS:SkinFrame(_G.RaiderIOProfileTooltip)

			_G.RaiderIOProfileTooltip.IsSkinned = true
		end
	end)
end

to the following:

function AS:RaiderIO()
	if _G.RaiderIO_CustomDropDownListMenuBackdrop then
		AS:SkinTooltip(_G.RaiderIO_CustomDropDownListMenuBackdrop)
	end

	_G.PVEFrame:HookScript("OnShow", function(self)
		if not _G.RaiderIO_ProfileTooltip.IsSkinned then
			AS:SkinFrame(_G.RaiderIO_ProfileTooltip)

			_G.RaiderIO_ProfileTooltip.IsSkinned = true
		end
	end)
end

in file RaiderIO.lua, inside AddOnSkins\Skins\Mainline\AddOns

TL;DR:
RaiderIOProfileTooltip needs to be RaiderIO_ProfileTooltip in file RaiderIO.lua, inside AddOnSkins\Skins\Mainline\AddOns
/fstack shows the correct frame name: