Trim trailing spaces

This commit is contained in:
ocornut
2016-03-26 15:43:45 +01:00
parent 2b7eeba143
commit 7661b1e778
11 changed files with 56 additions and 56 deletions

View File

@ -265,7 +265,7 @@ void ImGui_ImplGlfw_NewFrame()
{
io.MousePos = ImVec2(-1,-1);
}
for (int i = 0; i < 3; i++)
{
io.MouseDown[i] = g_MousePressed[i] || glfwGetMouseButton(g_Window, i) != 0; // If a mouse press event came, always pass it as "mouse held this frame", so we don't miss click-release events that are shorter than 1 frame.