Debug Log: Added IO events logging.

This commit is contained in:
ocornut
2022-08-08 11:58:57 +02:00
parent 133bbafa3c
commit 839c31006b
3 changed files with 33 additions and 21 deletions

View File

@ -1238,6 +1238,7 @@ struct ImGuiInputEvent
ImGuiInputEventText Text; // if Type == ImGuiInputEventType_Text
ImGuiInputEventAppFocused AppFocused; // if Type == ImGuiInputEventType_Focus
};
bool IgnoredAsSame;
bool AddedByTestEngine;
ImGuiInputEvent() { memset(this, 0, sizeof(*this)); }