View Single Post
01-08-18, 09:43 AM   #2
Ammako
A Frostmaul Preserver
AddOn Author - Click to view addons
Join Date: Jun 2016
Posts: 256
FrameStrata

https://wow.gamepedia.com/FrameStrata

Also it might be worth setting parent as MainMenuBarArtFrame, anchoring onto shop button, and hiding shop button with :Hide(). Might be a simpler way to do this than putting it in the center of MainMenuBar and moving it all the way over.

lua Code:
  1. StoreMicroButton:Hide()
  2. QuickJoinToastButton:ClearAllPoints()
  3. QuickJoinToastButton:SetParent(MainMenuBarArtFrame)
  4. QuickJoinToastButton:SetPoint("CENTER", StoreMicroButton, "CENTER", 0, -10)
  5. QuickJoinToastButton:SetFrameStrata(StoreMicroButton:GetFrameStrata())

The social button is 1 pixel smaller in height than the other buttons, though. So it looks a little bit off compared to everything else, but I imagine that won't really bother you.

Last edited by Ammako : 01-08-18 at 10:11 AM.
  Reply With Quote