View Single Post
06-05-20, 10:46 AM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
You need to reset the points after the box is checked/unchecked.

Something like:

Code:
CritFrame:Hide()
HitFrame:ClearAllPoints()
HitFrame:SetPoint("TOPLEFT", APFrame, "BOTTOMLEFT")
or
Code:
CritFrame:Show()
HitFrame:ClearAllPoints()
HitFrame:SetPoint("TOPLEFT", CritFrame, "BOTTOMLEFT")
Or you could just set the text of the fontstrings from top to bottom and set the last one(s) blank so you don't have to move anything.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 06-05-20 at 10:50 AM.
  Reply With Quote