关于 Modules/Interface/EasyShadow.lua
someblu opened this issue · 4 comments
仅从对称性来看的话,我猜测这处代码
local function shadowQuestIcon(_, block)
local itemButton = block.itemButton
if itemButton and not itemButton.styled then
CreateMyShadow(itemButton, 3)
itemButton.styled = true
end
local rightButton = block.rightButton
if rightButton and not rightButton.styled then
CreateMyShadow(itemButton, 3)
rightButton.styled = true
end
end
应改为
local function shadowQuestIcon(_, block)
local itemButton = block.itemButton
if itemButton and not itemButton.styled then
CreateMyShadow(itemButton, 3)
itemButton.styled = true
end
local rightButton = block.rightButton
if rightButton and not rightButton.styled then
CreateMyShadow(rightButton, 3)
rightButton.styled = true
end
end
递交了一个commit ( d134b66 ),目测已经修复了。