mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-04 13:05:07 +00:00
ImStrv: fix in ShowIDStackToolWindow().
Some checks failed
Some checks failed
This commit is contained in:
parent
8fd0a1da95
commit
f168fbc936
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue