Added refresh event for resize on OS X.

This commit is contained in:
Camilla Berglund 2013-04-21 17:39:10 +02:00
parent ace0a8ef28
commit b0ae7a6957

View File

@ -80,6 +80,7 @@ static void resetMouseCursor(_GLFWwindow *window)
int width, height; int width, height;
_glfwPlatformGetWindowSize(window, &width, &height); _glfwPlatformGetWindowSize(window, &width, &height);
_glfwInputWindowSize(window, width, height); _glfwInputWindowSize(window, width, height);
_glfwInputWindowDamage(window);
resetMouseCursor(window); resetMouseCursor(window);
} }