mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-27 09:56:03 +00:00
710be52f35
Drop the now-vestigial expansion plumbing.
- Delete modules/thirdparty-tbc.lua + its xml Include
- Strip 10 tbc-tagged CreateConfig calls in modules/gui.lua
- Drop the expansion arg from CreateConfig() signature + the disabled-
entry rendering path that depended on it
- Drop the showdisabled GUI toggle + its default
- Simplify pfUI:RegisterModule / pfUI:RegisterSkin to (name, func) only
- Strip the leading version arg ("vanilla:tbc", etc.) from all 114
Register call sites
- Delete the pfUI.expansion variable
18 lines
536 B
Lua
18 lines
536 B
Lua
pfUI:RegisterSkin("Flightmaster", function ()
|
|
StripTextures(TaxiFrame)
|
|
CreateBackdrop(TaxiFrame, nil, nil, .75)
|
|
CreateBackdropShadow(TaxiFrame)
|
|
|
|
TaxiFrame.backdrop:SetPoint("TOPLEFT", 10, -10)
|
|
TaxiFrame.backdrop:SetPoint("BOTTOMRIGHT", -32, 72)
|
|
TaxiFrame:SetHitRectInsets(10,32,10,72)
|
|
EnableMovable(TaxiFrame)
|
|
|
|
SkinCloseButton(TaxiCloseButton, TaxiFrame.backdrop, -6, -6)
|
|
|
|
TaxiFrame:DisableDrawLayer("BACKGROUND")
|
|
|
|
TaxiMerchant:ClearAllPoints()
|
|
TaxiMerchant:SetPoint("TOP", TaxiFrame.backdrop, "TOP", 0, -10)
|
|
end)
|