mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-30 03:10:06 +00:00
Nav: Fixed uninitialized context variables for sanity.
This commit is contained in:
parent
518f02f4de
commit
2f27b733be
1 changed files with 2 additions and 1 deletions
|
|
@ -582,7 +582,8 @@ struct ImGuiContext
|
|||
SettingsDirtyTimer = 0.0f;
|
||||
|
||||
NavWindow = NULL;
|
||||
NavId = NavActivateId = NavInputId = NavJustTabbedId = 0;
|
||||
NavId = NavActivateId = NavInputId = 0;
|
||||
NavJustTabbedId = NavJustNavigatedId = 0;
|
||||
NavScoringRectScreen = ImRect();
|
||||
NavWindowingTarget = NULL;
|
||||
NavWindowingDisplayAlpha = 0.0f;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue