IO: renamed io.ConfigInputEventQueue to io.ConfigInputTrickleEventQueue. (#4858)

This commit is contained in:
ocornut
2022-01-19 18:45:57 +01:00
parent 26d04c948f
commit 7ad42ff431
4 changed files with 6 additions and 6 deletions

View File

@ -1141,7 +1141,7 @@ ImGuiIO::ImGuiIO()
#else
ConfigMacOSXBehaviors = false;
#endif
ConfigInputEventQueue = true;
ConfigInputTrickleEventQueue = true;
ConfigInputTextCursorBlink = true;
ConfigWindowsResizeFromEdges = true;
ConfigWindowsMoveFromTitleBarOnly = false;
@ -4307,7 +4307,7 @@ void ImGui::NewFrame()
// Process input queue (trickle as many events as possible)
g.InputEventsTrail.resize(0);
UpdateInputEvents(g.IO.ConfigInputEventQueue);
UpdateInputEvents(g.IO.ConfigInputTrickleEventQueue);
// Update keyboard input state
UpdateKeyboardInputs();