Unhide mouse cursor on focus in

This commit is contained in:
Kovid Goyal 2017-09-18 20:28:55 +05:30
parent 93ca469d85
commit a857a35348
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -104,6 +104,7 @@ scroll_callback(GLFWwindow *w, double xoffset, double yoffset) {
static void
window_focus_callback(GLFWwindow UNUSED *w, int focused) {
global_state.application_focused = focused ? true : false;
if (focused && !global_state.mouse_visible) { glfwSetInputMode(w, GLFW_CURSOR, GLFW_CURSOR_NORMAL); global_state.mouse_visible = true; }
double now = monotonic();
global_state.last_mouse_activity_at = now;
global_state.cursor_blink_zero_time = now;