Browse Source

Make helper window child of HWND_MESSAGE

Camilla Berglund 9 years ago
parent
commit
bdd17c337f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/win32_init.c

+ 1 - 1
src/win32_init.c

@@ -299,7 +299,7 @@ static HWND createHelperWindow(void)
                                   L"GLFW helper window",
                                   WS_CLIPSIBLINGS | WS_CLIPCHILDREN,
                                   0, 0, 1, 1,
-                                  NULL, NULL,
+                                  HWND_MESSAGE, NULL,
                                   GetModuleHandleW(NULL),
                                   NULL);
     if (!window)