LemonUIbyLemon / LemonUI

LemonUI for .NET (FiveM, RageMP, RagePluginHook and ScriptHookVDotNet 3)
MIT License
177 stars 40 forks source link

Can't set Menu.Name to Lower or Proper Case #183

Open AliciaWindsor opened 1 month ago

AliciaWindsor commented 1 month ago

Have tried a few different things to get the Menu Name to stop shouting in all caps. Can't figure it out. No errors, just stays UPPER! Help please for proper structure and syntax.

menuPedSelection.Name = "The Name";
 menuPedSelection.Name.ToString();
 menuPedSelection.Name = menuPedSelection.Name.ToLower();

//or simply

menuPedSelection.Name = "The Name";
menuPedSelection.Name = menuPedSelection.Name.ToLower();