From 5018544695bc07c307b8a84465fc4cf19c973f2e Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Mon, 30 May 2022 14:41:43 -0400 Subject: [PATCH] fix: use unique labels --- ChatTwo/Ui/ChatLog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChatTwo/Ui/ChatLog.cs b/ChatTwo/Ui/ChatLog.cs index e8332ff..d1fe6ef 100755 --- a/ChatTwo/Ui/ChatLog.cs +++ b/ChatTwo/Ui/ChatLog.cs @@ -992,7 +992,7 @@ internal sealed class ChatLog : IUiComponent { for (var i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) { var entry = this._autoCompleteList[i]; - if (!ImGui.Selectable(entry.String)) { + if (!ImGui.Selectable($"{entry.String}##{entry.Group}/{entry.Row}")) { continue; }