Skip to content
  • Sponsor tukui-org/ElvUI

  • Notifications You must be signed in to change notification settings
  • Fork 167

Commit 949febb

Browse files
committedFeb 27, 2025·
this seems to not taint
1 parent 9388ef5 commit 949febb

File tree

1 file changed

+22
-9
lines changed
  • ElvUI/Mainline/Modules/Skins

1 file changed

+22
-9
lines changed
 

‎ElvUI/Mainline/Modules/Skins/LFG.lua

+22-9
Original file line numberDiff line numberDiff line change
@@ -434,16 +434,29 @@ function S:LookingForGroupFrames()
434434
S:HandleButton(LFGListFrame.SearchPanel.BackButton)
435435
S:HandleButton(LFGListFrame.SearchPanel.SignUpButton)
436436

437+
local dumbbutton = LFGListFrame.SearchPanel.ScrollBox.StartGroupButton
438+
local fu = CreateFrame("Frame", "DumbButton", E.UIParent)
439+
fu:SetFrameLevel(10)
440+
fu:SetFrameStrata("HIGH")
441+
fu:Size(135,22)
442+
fu:SetTemplate()
443+
fu:SetPoint(dumbbutton:GetPoint())
444+
fu.biatch = fu:CreateFontString(nil, "OVERLAY", "GameFontHighlight")
445+
fu.biatch:SetPoint("CENTER")
446+
fu.biatch:FontTemplate()
447+
fu.biatch:SetText(_G.START_A_GROUP)
448+
fu:Hide()
449+
450+
dumbbutton:HookScript("OnHide", function()
451+
fu:Hide()
452+
end)
453+
dumbbutton:HookScript("OnShow", function()
454+
fu:ClearAllPoints()
455+
fu:SetPoint(dumbbutton:GetPoint())
456+
fu:Show()
457+
end)
458+
437459

438-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis = CreateFrame("Frame", nil, LFGListFrame.SearchPanel.ScrollBox.StartGroupButton)
439-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis:SetAllPoints(LFGListFrame.SearchPanel.ScrollBox.StartGroupButton)
440-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis:SetFrameLevel(LFGListFrame.SearchPanel.ScrollBox.StartGroupButton:GetFrameLevel()+1)
441-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis:SetFrameStrata(LFGListFrame.SearchPanel.ScrollBox.StartGroupButton:GetFrameStrata())
442-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis:SetTemplate()
443-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis.shit = LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis:CreateFontString(nil, "OVERLAY", "GameFontHighlight")
444-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis.shit:SetPoint("CENTER")
445-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis.shit:FontTemplate()
446-
LFGListFrame.SearchPanel.ScrollBox.StartGroupButton.fuckthis.shit:SetText(_G.START_A_GROUP)
447460

448461
LFGListFrame.SearchPanel.BackButton:ClearAllPoints()
449462
LFGListFrame.SearchPanel.BackButton:Point('BOTTOMLEFT', -1, 3)

0 commit comments

Comments
 (0)
Please sign in to comment.