From 9bac468bf84d1733c452d52770a080c49ac8e005 Mon Sep 17 00:00:00 2001 From: Cordelia Mist Date: Tue, 30 Dec 2025 16:15:51 -0800 Subject: [PATCH] Fix the ImGuiAssert on the debug tab --- Penumbra/UI/Tabs/Debug/DebugTab.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Penumbra/UI/Tabs/Debug/DebugTab.cs b/Penumbra/UI/Tabs/Debug/DebugTab.cs index c7f0635d..a6a777b0 100644 --- a/Penumbra/UI/Tabs/Debug/DebugTab.cs +++ b/Penumbra/UI/Tabs/Debug/DebugTab.cs @@ -186,7 +186,7 @@ public class DebugTab : Window, ITab, IUiService public void DrawContent() { - using var child = Child("##DebugTab", -Vector2.One); + using var child = ImUtf8.Child("##DebugTab"u8, -Vector2.One); if (!child) return;