mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-12 02:00:58 +01: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;
|
||||
|
||||
NavWindow = NULL;
|
||||
NavId = NavActivateId = NavInputId = NavJustTabbedId = 0;
|
||||
NavId = NavActivateId = NavInputId = 0;
|
||||
NavJustTabbedId = NavJustNavigatedId = 0;
|
||||
NavScoringRectScreen = ImRect();
|
||||
NavWindowingTarget = NULL;
|
||||
NavWindowingDisplayAlpha = 0.0f;
|
||||
|
Loading…
Reference in New Issue
Block a user