1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-30 03:10:06 +00:00

Merge remote-tracking branch 'origin' into 2016-07-navigation

This commit is contained in:
ocornut 2016-11-27 18:25:20 +01:00
commit 3028ccc25b
24 changed files with 347 additions and 307 deletions

View file

@ -347,7 +347,8 @@ void ImGui_ImplDX9_NewFrame()
}
// Hide OS mouse cursor if ImGui is drawing it
SetCursor(io.MouseDrawCursor ? NULL : LoadCursor(NULL, IDC_ARROW));
if (io.MouseDrawCursor)
SetCursor(NULL);
// Start the frame
ImGui::NewFrame();