Skip to content

Commit

Permalink
Updated an Arrow Texture on the Wardrobe Skin. This thing needed some…
Browse files Browse the repository at this point in the history
… special treatment >.>
  • Loading branch information
Merathilis committed Dec 20, 2024
1 parent 7a42a3c commit 26b5cf5
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion ElvUI/Mainline/Modules/Skins/Collectables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,20 @@ local function SkinTransmogFrames()
end
end

S:HandleButton(WardrobeTransmogFrame.SpecDropdown)
local specButton = WardrobeTransmogFrame.SpecDropdown
if specButton then
S:HandleButton(specButton)
if specButton.Arrow then specButton.Arrow:SetAlpha(0) end
specButton:SetPoint('RIGHT', WardrobeTransmogFrame.ApplyButton, 'LEFT', -3, 0)

if not specButton.CustomArrow then
local tex = specButton:CreateTexture(nil, 'ARTWORK')
tex:SetAllPoints()
tex:SetTexture(E.Media.Textures.ArrowUp)
tex:SetRotation(S.ArrowRotation.down)
end
end

S:HandleButton(WardrobeTransmogFrame.ApplyButton)
S:HandleButton(WardrobeTransmogFrame.ModelScene.ClearAllPendingButton)
S:HandleCheckBox(WardrobeTransmogFrame.ToggleSecondaryAppearanceCheckbox)
Expand Down

0 comments on commit 26b5cf5

Please sign in to comment.