@@ -434,16 +434,29 @@ function S:LookingForGroupFrames()
434
434
S :HandleButton (LFGListFrame .SearchPanel .BackButton )
435
435
S :HandleButton (LFGListFrame .SearchPanel .SignUpButton )
436
436
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
+
437
459
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 )
447
460
448
461
LFGListFrame .SearchPanel .BackButton :ClearAllPoints ()
449
462
LFGListFrame .SearchPanel .BackButton :Point (' BOTTOMLEFT' , - 1 , 3 )
0 commit comments