View Single Post
07-01-19, 10:23 AM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
Instead of using the base parent frame of the addon to create your FontStrings, use the frame that will be the parent (frame you want the text to overlay) of the FontString itself.

from:
Code:
UI_DisplayFrame.textFrame.title = UI_DisplayFrame:CreateFontString("buttonTitle", "OVERLAY");
to:
Code:
UI_DisplayFrame.textFrame.title = UI_DisplayFrame.textFrame:CreateFontString("buttonTitle", "OVERLAY")
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 07-01-19 at 10:41 AM.
  Reply With Quote