When changing a GuiContextMenuCtrl textprofile's font size, color, and style via useownprofile, when right clicking on the accounts in the in-game playerlist and viewing player profiles, those attributes carry over. How do I limit this to only the GuiContextMenuCtrl I've created? Here's a snippet of what I've done; maybe I'm just doing it incorrectly?
PHP Code:
new GuiContextMenuCtrl( "Guild_Menu" ) {
useOwnProfile = true;
profile = GuiBluePopUpMenuProfile;
textprofile = GuiBlueTextListProfile;
textprofile.fontSize = 15;
textprofile.fontColor = "orange";
textprofile.fontStyle = "bold";
I understand I'm modifying the GuiBlueTextListProfile, but that's only because (obviously) I need the qualities from it. I only want that useownprofile to effect that GuiContextMenuCtrl. Any ideas?