refactor(ui): rename ImGui popup ID to hellionchat- prefix

Prevents ImGui ID-stack collision when both Hellion Chat and upstream
Chat 2 try to render their context popups in the same frame.
This commit is contained in:
2026-05-03 21:07:21 +02:00
parent 70109e1896
commit 581aae1735
+1 -1
View File
@@ -28,7 +28,7 @@ namespace ChatTwo;
public sealed class PayloadHandler
{
private const string PopupId = "chat2-context-popup";
private const string PopupId = "hellionchat-context-popup";
private ChatLogWindow LogWindow { get; }
private (Chunk, Payload?)? Popup { get; set; }