Skip to content

Commit

Permalink
[Skins] Small fixes for Classic 3.4.1 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
EsreverWoW committed Dec 8, 2022
1 parent cf4b63a commit 67b9539
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ShestakUI/Modules/Skins/Blizzard_Vanilla/Character.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ local function LoadSkin()
if itemId then
local rarity = GetInventoryItemQuality("player", slotId)
if rarity and rarity > 1 then
target:SetBackdropBorderColor(GetItemQualityColor(rarity))
local R, G, B = GetItemQualityColor(rarity)
target:SetBackdropBorderColor(R, G, B)
else
target:SetBackdropBorderColor(unpack(C.media.border_color))
end
Expand Down
6 changes: 5 additions & 1 deletion ShestakUI/Modules/Skins/Blizzard_Vanilla/ItemText.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ local function LoadSkin()

T.SkinScrollBar(ItemTextScrollFrameScrollBar)

ItemTextPageText:SetTextColor(1, 1, 1)
if T.Wrath341 then
ItemTextPageText:SetTextColor("P", 1, 1, 1)
else
ItemTextPageText:SetTextColor(1, 1, 1)
end
ItemTextPageText.SetTextColor = T.dummy
end

Expand Down

0 comments on commit 67b9539

Please sign in to comment.