From 00a883a8e2f87e464a83196f5ebcdd1d60716f72 Mon Sep 17 00:00:00 2001 From: MidoriKami <9083275+MidoriKami@users.noreply.github.com> Date: Tue, 11 Jul 2023 19:59:09 -0700 Subject: [PATCH] Fixes all fatetable copy buttons having the same ID --- .../Interface/Internal/Windows/Data/Widgets/FateTableWidget.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/Data/Widgets/FateTableWidget.cs b/Dalamud/Interface/Internal/Windows/Data/Widgets/FateTableWidget.cs index 78a93c1cc..779032f1d 100644 --- a/Dalamud/Interface/Internal/Windows/Data/Widgets/FateTableWidget.cs +++ b/Dalamud/Interface/Internal/Windows/Data/Widgets/FateTableWidget.cs @@ -58,7 +58,7 @@ internal class FateTableWidget : IDataWindowWidget ImGui.TextUnformatted(fateString); ImGui.SameLine(); - if (ImGui.Button("C")) + if (ImGui.Button($"C##{fate.Address.ToInt64():X}")) { ImGui.SetClipboardText(fate.Address.ToString("X")); }