From f168fbc936934dafad08d456efa06164122d56af Mon Sep 17 00:00:00 2001 From: ocornut Date: Thu, 6 Mar 2025 19:25:57 +0100 Subject: [PATCH] ImStrv: fix in ShowIDStackToolWindow(). --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index 87b715f5d..c05710183 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -17028,7 +17028,7 @@ void ImGui::ShowIDStackToolWindow(bool* p_open) { if (level_desc[n] == '/') tool->ResultPathBuf.append("\\"); - tool->ResultPathBuf.append(level_desc + n, level_desc + n + 1); + tool->ResultPathBuf.append(ImStrv(level_desc + n, level_desc + n + 1)); } } Text("0x%08X", tool->QueryId);