You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
592 B
21 lines
592 B
local E, L, V, P, G = unpack(ElvUI)
|
|
local S = E:GetModule('Skins')
|
|
|
|
local _G = _G
|
|
|
|
function S:TaxiFrame()
|
|
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.taxi) then return end
|
|
|
|
local TaxiFrame = _G.TaxiFrame
|
|
S:HandleFrame(TaxiFrame, true, nil, 11, -12, -32, 76)
|
|
_G.TaxiPortrait:Kill() -- Blizz didnt name this TaxiFramePortrait
|
|
|
|
S:HandlePointXY(_G.TaxiMap, -11, -71)
|
|
S:HandlePointXY(_G.TaxiRouteMap, -11, -71)
|
|
|
|
_G.TaxiMerchant:SetTextColor(1, 1, 1)
|
|
|
|
S:HandleCloseButton(_G.TaxiCloseButton, TaxiFrame.backdrop)
|
|
end
|
|
|
|
S:AddCallback('TaxiFrame')
|
|
|