ImStrv: fix in ShowIDStackToolWindow().
Some checks failed
build / Windows (push) Has been cancelled
build / Linux (push) Has been cancelled
build / MacOS (push) Has been cancelled
build / iOS (push) Has been cancelled
build / Emscripten (push) Has been cancelled
build / Android (push) Has been cancelled

This commit is contained in:
ocornut 2025-03-06 19:25:57 +01:00
parent 8fd0a1da95
commit f168fbc936

View file

@ -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);