View Single Post
04-27-23, 10:20 AM   #8
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,894
In your XML, you're using:
Lua Code:
  1. <Layers>
  2.             <Layer level="BORDER">
  3.                 <Texture file="Interface\LFGFRAME\UI-FRAME-THREEBUTTON-BLANK">
  4.                     <Anchors>
  5.                         <Anchor point="LEFT"/>
  6.                     </Anchors>
  7.                 </Texture>
  8.             </Layer>
  9.         </Layers>

Which is just a texture image of a standard game frame border with a portrait circle at the top left. You don't really need it as it's just the same as the Character Frame. Get rid of that section from the xml or if you have to use it, you will need to adjust the texture anchor to move it where you want.
eg.
Lua Code:
  1. <Layers>
  2.             <Layer level="BORDER">
  3.                 <Texture file="Interface\LFGFRAME\UI-FRAME-THREEBUTTON-BLANK">
  4.                     <Anchors>
  5.                         <Anchor point="LEFT" x="-16" y="-33"/>
  6.                     </Anchors>
  7.                 </Texture>
  8.             </Layer>
  9.         </Layers>
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 04-27-23 at 10:26 AM.
  Reply With Quote