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

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

View File

@ -584,7 +584,8 @@ void ImGui_ImplDX11_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();