mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Nav: Fixed uninitialized context variables for sanity.
This commit is contained in:
parent
518f02f4de
commit
2f27b733be
@ -582,7 +582,8 @@ struct ImGuiContext
|
|||||||
SettingsDirtyTimer = 0.0f;
|
SettingsDirtyTimer = 0.0f;
|
||||||
|
|
||||||
NavWindow = NULL;
|
NavWindow = NULL;
|
||||||
NavId = NavActivateId = NavInputId = NavJustTabbedId = 0;
|
NavId = NavActivateId = NavInputId = 0;
|
||||||
|
NavJustTabbedId = NavJustNavigatedId = 0;
|
||||||
NavScoringRectScreen = ImRect();
|
NavScoringRectScreen = ImRect();
|
||||||
NavWindowingTarget = NULL;
|
NavWindowingTarget = NULL;
|
||||||
NavWindowingDisplayAlpha = 0.0f;
|
NavWindowingDisplayAlpha = 0.0f;
|
||||||
|
Loading…
Reference in New Issue
Block a user