From 6412dcb8969510f056997b836d7a22158b7f1222 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Tue, 7 Apr 2015 21:52:29 +0200 Subject: [PATCH] Added note on delayed OS X window title updating. Fixes #495. --- include/GLFW/glfw3.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/GLFW/glfw3.h b/include/GLFW/glfw3.h index b2e7ee4a..b5d00cd7 100644 --- a/include/GLFW/glfw3.h +++ b/include/GLFW/glfw3.h @@ -1718,6 +1718,9 @@ GLFWAPI void glfwSetWindowShouldClose(GLFWwindow* window, int value); * @param[in] window The window whose title to change. * @param[in] title The UTF-8 encoded window title. * + * @remarks __OS X:__ The window title will not be updated until the next time + * you process events. + * * @par Thread Safety * This function may only be called from the main thread. *