Fixes all fatetable copy buttons having the same ID

This commit is contained in:
MidoriKami 2023-07-11 19:59:09 -07:00
parent 7109f21387
commit 00a883a8e2

View file

@ -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"));
}