mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-25 01:49:19 +01:00
Fix small issue with changed item tooltips.
This commit is contained in:
parent
6b858dc5ac
commit
1b17404876
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ public class Penumbra : IDalamudPlugin
|
||||||
var itemSheet = _services.GetService<IDataManager>().GetExcelSheet<Item>()!;
|
var itemSheet = _services.GetService<IDataManager>().GetExcelSheet<Item>()!;
|
||||||
_communicatorService.ChangedItemHover.Subscribe(it =>
|
_communicatorService.ChangedItemHover.Subscribe(it =>
|
||||||
{
|
{
|
||||||
if (it is IdentifiedItem)
|
if (it is IdentifiedItem { Item.Id.IsItem: true })
|
||||||
ImGui.TextUnformatted("Left Click to create an item link in chat.");
|
ImGui.TextUnformatted("Left Click to create an item link in chat.");
|
||||||
}, ChangedItemHover.Priority.Link);
|
}, ChangedItemHover.Priority.Link);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue