From 0060b68efd6325ab33be6aa52c3f8b895beab4e9 Mon Sep 17 00:00:00 2001 From: Brian Matzon Date: Mon, 17 Mar 2003 18:40:56 +0000 Subject: [PATCH] fix: dragging of window doesn't work, when returning directly from unhandled WM_SYSCOMMAND - so let's not do that! --- src/native/win32/org_lwjgl_Display.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/native/win32/org_lwjgl_Display.cpp b/src/native/win32/org_lwjgl_Display.cpp index 9650f8a0..89362ab8 100644 --- a/src/native/win32/org_lwjgl_Display.cpp +++ b/src/native/win32/org_lwjgl_Display.cpp @@ -162,8 +162,6 @@ LRESULT CALLBACK WindowProc(HWND hWnd, //don't continue processing this command since this //would shutdown the window, which the application might not want to return 0L; - default: - return 0L; // don't allow the window menu to show } } break;