Skip to content

Commit e56a389

Browse files
committed
skin spellbook flyouts again
1 parent 642ce52 commit e56a389

File tree

3 files changed

+27
-24
lines changed

3 files changed

+27
-24
lines changed

ElvUI/Core/Modules/ActionBars/ActionBars.lua

+24-9
Original file line numberDiff line numberDiff line change
@@ -944,8 +944,13 @@ do
944944
button.OnIconEnter = AB.SpellButtonOnEnter
945945
button.OnIconLeave = AB.SpellButtonOnLeave
946946

947-
if button.Button then -- the icon enter
948-
button.Button:HookScript('OnEnter', BindOnEnter)
947+
local spellButton = button.Button
948+
if spellButton then -- actual spell button
949+
if spellButton.BorderShadow then
950+
spellButton.BorderShadow:SetAlpha(0)
951+
end
952+
953+
spellButton:HookScript('OnEnter', BindOnEnter)
949954
end
950955
else
951956
if button.OnEnter == AB.SpellButtonOnEnter then
@@ -1502,10 +1507,13 @@ function AB:SpellFlyout_OnLeave()
15021507
end
15031508

15041509
function AB:UpdateFlyoutButtons()
1505-
if _G.LABFlyoutHandlerFrame then _G.LABFlyoutHandlerFrame.Background:Hide() end
1510+
if _G.LABFlyoutHandlerFrame then
1511+
_G.LABFlyoutHandlerFrame.Background:Hide()
1512+
end
15061513

1507-
local isShown = _G.SpellFlyout:IsShown()
1508-
local btn, i = _G['SpellFlyoutButton1'], 1
1514+
local isShown, i = _G.SpellFlyout:IsShown(), 1
1515+
local flyoutName = E.Retail and 'SpellFlyoutPopupButton' or 'SpellFlyoutButton'
1516+
local btn = _G[flyoutName..i]
15091517
while btn do
15101518
if isShown then
15111519
AB:SetupFlyoutButton(btn)
@@ -1518,13 +1526,21 @@ function AB:UpdateFlyoutButtons()
15181526
end
15191527

15201528
i = i + 1
1521-
btn = _G['SpellFlyoutButton'..i]
1529+
btn = _G[flyoutName..i]
15221530
end
15231531
end
15241532

1533+
function AB:HideFlyoutShadow(button)
1534+
if button.BorderShadow then button.BorderShadow:SetAlpha(0) end
1535+
if button.FlyoutBorder then button.FlyoutBorder:SetAlpha(0) end
1536+
if button.FlyoutBorderShadow then button.FlyoutBorderShadow:SetAlpha(0) end
1537+
end
1538+
15251539
function AB:SetupFlyoutButton(button)
15261540
if not AB.handledbuttons[button] then
15271541
AB:StyleButton(button, nil, FlyoutMasqueGroup and E.private.actionbar.masque.actionbars)
1542+
AB:HideFlyoutShadow(button)
1543+
15281544
button:HookScript('OnEnter', AB.FlyoutButton_OnEnter)
15291545
button:HookScript('OnLeave', AB.FlyoutButton_OnLeave)
15301546
end
@@ -1540,9 +1556,6 @@ function AB:SetupFlyoutButton(button)
15401556
end
15411557

15421558
function AB:StyleFlyout(button, arrow)
1543-
if button.FlyoutBorder then button.FlyoutBorder:SetAlpha(0) end
1544-
if button.FlyoutBorderShadow then button.FlyoutBorderShadow:SetAlpha(0) end
1545-
15461559
local bar = button:GetParent()
15471560
local barName = bar:GetName()
15481561

@@ -1554,6 +1567,8 @@ function AB:StyleFlyout(button, arrow)
15541567
if not arrow then arrow = btn.FlyoutArrow or (btn.GetArrowRotation and btn.Arrow) or (btn.FlyoutArrowContainer and btn.FlyoutArrowContainer.FlyoutArrowNormal) end
15551568
if not arrow then return end
15561569

1570+
AB:HideFlyoutShadow(button)
1571+
15571572
if barName == 'SpellBookSpellIconsFrame' or ownerName == 'SpellBookSpellIconsFrame' then
15581573
local distance = (_G.SpellFlyout and _G.SpellFlyout:IsShown() and _G.SpellFlyout:GetParent() == parent) and 7 or 4
15591574
arrow:ClearAllPoints()

ElvUI/Mainline/Modules/Skins/SpellBook.lua

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ local GetProfessionInfo = GetProfessionInfo
1010
local C_SpellBook_GetSpellBookItemInfo = C_SpellBook.GetSpellBookItemInfo
1111
local SpellBookSpellBank = Enum.SpellBookSpellBank
1212

13+
local barColor = { 0, .86, 0 }
14+
1315
local function clearBackdrop(self)
1416
self:SetBackdropColor(0, 0, 0, 1)
1517
end
@@ -66,6 +68,7 @@ end
6668

6769
local function HandleSkillButton(button)
6870
if not button then return end
71+
6972
button:SetCheckedTexture(E.media.normTex)
7073
button:GetCheckedTexture():SetColorTexture(1, 1, 1, .25)
7174
button:SetPushedTexture(E.media.normTex)
@@ -96,7 +99,6 @@ function S:Blizzard_ProfessionsBook()
9699
end
97100

98101
--Profession Tab
99-
local barColor = {0, .86, 0}
100102
for _, button in next, { _G.PrimaryProfession1, _G.PrimaryProfession2, _G.SecondaryProfession1, _G.SecondaryProfession2, _G.SecondaryProfession3 } do
101103
button.missingHeader:SetTextColor(1, 1, 0)
102104
button.missingText:SetTextColor(1, 1, 1)

ElvUI_Libraries/Core/LibActionButton-1.0/LibActionButton-1.0.lua

-14
Original file line numberDiff line numberDiff line change
@@ -270,16 +270,6 @@ local DefaultConfig = {
270270
},
271271
}
272272

273-
-- Helper function to prevent calls on Blizzards side
274-
local function CreateDummyPopup(frame)
275-
local popup = frame or CreateFrame('Frame')
276-
277-
popup.AttachToButton = noop
278-
popup.DetatchFromButton = noop
279-
280-
return popup
281-
end
282-
283273
--- Create a new action button.
284274
-- @param id Internal id of the button (not used by LibActionButton-1.0, only for tracking inside the calling addon)
285275
-- @param name Name of the button frame to be created (not used by LibActionButton-1.0 aside from naming the frame)
@@ -304,8 +294,6 @@ function lib:CreateButton(id, name, header, config)
304294
button:RegisterForClicks("AnyUp")
305295
end
306296

307-
button.popup = CreateDummyPopup()
308-
309297
button.cooldown:SetFrameStrata(button:GetFrameStrata())
310298
button.cooldown:SetFrameLevel(button:GetFrameLevel() + 1)
311299

@@ -1152,8 +1140,6 @@ if UseCustomFlyout then
11521140
for i = #lib.FlyoutButtons + 1, maxNumSlots do
11531141
local button = lib:CreateButton(i, "LABFlyoutButton" .. i, lib.flyoutHandler, nil)
11541142

1155-
button.popup = CreateDummyPopup()
1156-
11571143
button:SetScale(0.8)
11581144
button:Hide()
11591145

0 commit comments

Comments
 (0)