mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2026-02-24 21:51:48 +01:00
Fix minor issues.
This commit is contained in:
parent
f8ca572d38
commit
4d466fb7eb
2 changed files with 4 additions and 4 deletions
|
|
@ -194,7 +194,7 @@ public class UnlockTable : Table<EquipItem>, IDisposable
|
|||
ImGui.Dummy(new Vector2(ImGui.GetFrameHeight()));
|
||||
ImGui.SameLine();
|
||||
ImGui.AlignTextToFramePadding();
|
||||
if (ImGui.Selectable(item.Name) && !item.Id.IsBonusItem)
|
||||
if (ImGui.Selectable(item.Name) && item.Id is { IsBonusItem: false, IsCustom: false })
|
||||
Glamourer.Messager.Chat.Print(new SeStringBuilder().AddItemLink(item.ItemId.Id, false).BuiltString);
|
||||
|
||||
if (ImGui.IsItemClicked(ImGuiMouseButton.Right) && _tooltip.Player(out var state))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue