From 581aae1735b995710171ac3a98b2c3bb84696e83 Mon Sep 17 00:00:00 2001 From: JonKazama-Hellion Date: Sun, 3 May 2026 21:07:21 +0200 Subject: [PATCH] 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. --- ChatTwo/PayloadHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ChatTwo/PayloadHandler.cs b/ChatTwo/PayloadHandler.cs index 40a90e9..f5aeae8 100755 --- a/ChatTwo/PayloadHandler.cs +++ b/ChatTwo/PayloadHandler.cs @@ -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; }