Remove no-op call at window creation

Related to #1568.
master
Camilla Löwy ago%!(EXTRA string=5 years)
parent 6d2003d07a
commit 1095a43708
  1. 3
      src/window.c

@ -244,7 +244,8 @@ GLFWAPI GLFWwindow* glfwCreateWindow(int width, int height,
} }
} }
_glfwPlatformSetWindowMousePassthrough(window, wndconfig.mousePassthrough); if (wndconfig.mousePassthrough)
_glfwPlatformSetWindowMousePassthrough(window, GLFW_TRUE);
return (GLFWwindow*) window; return (GLFWwindow*) window;
} }

Loading…
Cancel
Save