X11: Fix init order breaking cursor hiding

The hidden cursor was created before Xcursor was loaded.
This commit is contained in:
Camilla Löwy 2017-09-17 16:06:02 +02:00
parent e3be6b8ae0
commit f4fb25b63d
1 changed files with 3 additions and 2 deletions

View File

@ -860,12 +860,13 @@ int _glfwPlatformInit(void)
_glfw.x11.screen = DefaultScreen(_glfw.x11.display);
_glfw.x11.root = RootWindow(_glfw.x11.display, _glfw.x11.screen);
_glfw.x11.context = XUniqueContext();
_glfw.x11.helperWindowHandle = createHelperWindow();
_glfw.x11.hiddenCursorHandle = createHiddenCursor();
if (!initExtensions())
return GLFW_FALSE;
_glfw.x11.helperWindowHandle = createHelperWindow();
_glfw.x11.hiddenCursorHandle = createHiddenCursor();
if (XSupportsLocale())
{
XSetLocaleModifiers("");