mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-09 23:54:20 +00:00
Debug Tools: ID Stack Tool: store ResultsComplete and don't display incomplete paths.
This commit is contained in:
parent
5a0c67c4b8
commit
c254db7637
2 changed files with 7 additions and 5 deletions
|
|
@ -2132,9 +2132,10 @@ struct ImGuiStackLevelInfo
|
|||
struct ImGuiIDStackTool
|
||||
{
|
||||
int LastActiveFrame;
|
||||
int StackLevel; // -1: query stack and resize Results, >= 0: individual stack level
|
||||
ImGuiID QueryMainId; // ID to query details for
|
||||
int StackLevel; // -1: query stack and resize Results, >= 0: individual stack level.
|
||||
ImGuiID QueryMainId; // ID to query details for.
|
||||
ImVector<ImGuiStackLevelInfo> Results;
|
||||
bool ResultsComplete; // All sub-query have succeeeded, result is complete.
|
||||
bool QueryHookActive; // Used to disambiguate the case where DebugHookIdInfoId == 0 which is valid.
|
||||
bool OptHexEncodeNonAsciiChars;
|
||||
bool OptCopyToClipboardOnCtrlC;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue