mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-28 19:39:22 +01:00
Fix issue in unlocks tab.
This commit is contained in:
parent
59c9601a9b
commit
f8ca572d38
1 changed files with 1 additions and 1 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))
|
||||
if (ImGui.Selectable(item.Name) && !item.Id.IsBonusItem)
|
||||
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