mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
fix: Use Prefix instead of PrefixChar for menu item tag (#1767)
This commit is contained in:
parent
e32fc00277
commit
b8802f0609
1 changed files with 1 additions and 1 deletions
|
|
@ -270,7 +270,7 @@ internal sealed unsafe class ContextMenu : IInternalDisposableService, IContextM
|
||||||
{
|
{
|
||||||
if (!item.Prefix.HasValue && !item.UseDefaultPrefix)
|
if (!item.Prefix.HasValue && !item.UseDefaultPrefix)
|
||||||
{
|
{
|
||||||
item.PrefixChar = MenuItem.DalamudDefaultPrefix.ToIconChar();
|
item.Prefix = MenuItem.DalamudDefaultPrefix;
|
||||||
item.PrefixColor = MenuItem.DalamudDefaultPrefixColor;
|
item.PrefixColor = MenuItem.DalamudDefaultPrefixColor;
|
||||||
Log.Warning($"Menu item \"{item.Name}\" has no prefix, defaulting to Dalamud's. Menu items outside of a submenu must have a prefix.");
|
Log.Warning($"Menu item \"{item.Name}\" has no prefix, defaulting to Dalamud's. Menu items outside of a submenu must have a prefix.");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue