Fixed bug #1045054 (KeyReleaseMask typo).
git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@528 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
parent
dda2b9bdcd
commit
a3e75b2f8c
@ -702,3 +702,5 @@ from freeglut.
|
||||
|
||||
(186) Fixed bug #1087642 (glutDeviceGet(GLUT_DEVICE_KEY_REPEAT)
|
||||
unimplemented).
|
||||
|
||||
(187) Fixed bug #1045054 (KeyReleaseMask typo).
|
||||
|
@ -336,7 +336,7 @@ void fgOpenWindow( SFG_Window* window, const char* title,
|
||||
*/
|
||||
winAttr.event_mask =
|
||||
StructureNotifyMask | SubstructureNotifyMask | ExposureMask |
|
||||
ButtonPressMask | ButtonReleaseMask | KeyPressMask | KeyRelease |
|
||||
ButtonPressMask | ButtonReleaseMask | KeyPressMask | KeyReleaseMask |
|
||||
VisibilityChangeMask | EnterWindowMask | LeaveWindowMask |
|
||||
PointerMotionMask | ButtonMotionMask;
|
||||
winAttr.background_pixmap = None;
|
||||
|
Reference in New Issue
Block a user