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.

31 lines
1.1 KiB

local AS = unpack(AddOnSkins)
function AS:Blizzard_Taxi()
AS:StripTextures(TaxiFrame)
AS:SkinBackdropFrame(TaxiFrame)
AS:SkinCloseButton(TaxiCloseButton)
TaxiCloseButton:SetFrameLevel(TaxiRouteMap:GetFrameLevel() + 1)
TaxiCloseButton:SetPoint("TOPRIGHT", -28, -8)
AS:Kill(TaxiPortrait)
TaxiFrame.Backdrop:SetPoint("TOPLEFT", 11, -12)
TaxiFrame.Backdrop:SetPoint("BOTTOMRIGHT", -32, 76)
end
function AS:Blizzard_FlightMap(event, addon)
if addon ~= 'Blizzard_FlightMap' then return end
AS:StripTextures(FlightMapFrame)
AS:CreateBackdrop(FlightMapFrame.ScrollContainer)
FlightMapFrame.ScrollContainer.Backdrop:SetPoint('TOPLEFT', FlightMapFrame.ScrollContainer, 'TOPLEFT', -1, 0)
FlightMapFrame.BorderFrame.TitleText:SetText('')
AS:StripTextures(FlightMapFrame.BorderFrame)
AS:SkinCloseButton(FlightMapFrame.BorderFrame.CloseButton)
FlightMapFrame.BorderFrame.CloseButton:SetPoint("TOPRIGHT", 5, -14)
AS:UnregisterSkinEvent(addon, event)
end
AS:RegisterSkin('Blizzard_FlightMap', AS.Blizzard_FlightMap, 'ADDON_LOADED')
AS:RegisterSkin('Blizzard_Taxi', AS.Blizzard_Taxi)