John's fix for the minimize/close/maximize controls no longer working.
WIN32 expected us to pass the message on up the chain (or do something else with it), rather than just throwing away the event, for a certain class of events. (See the diffs for more details.) The code is also slightly reformatted from what was previously in the repository. git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@334 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
b1c4e6beb8
commit
7621f53262
@ -1751,7 +1751,10 @@ LRESULT CALLBACK fgWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam,
|
||||
break ;
|
||||
}
|
||||
}
|
||||
break ;
|
||||
|
||||
/* We need to pass the message on to the operating system as well */
|
||||
lRet = DefWindowProc( hWnd, uMsg, wParam, lParam );
|
||||
break;
|
||||
|
||||
default:
|
||||
/*
|
||||
|
Reference in New Issue
Block a user