From: John F. Fay Date: Wed, 19 Sep 2007 04:15:14 +0000 (+0000) Subject: Fixing Linux key-repeat mode bug reported in "[ 1796845 ] Keyboard events are lost... X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=commitdiff_plain;h=04e5e572af10abe0725bd9312f1945be26688a83;p=freeglut Fixing Linux key-repeat mode bug reported in "[ 1796845 ] Keyboard events are lost when key repeat is enabled." git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@722 7f0cb862-5218-0410-a997-914c9d46530a --- diff --git a/src/freeglut_main.c b/src/freeglut_main.c index 44876f2..c49943e 100644 --- a/src/freeglut_main.c +++ b/src/freeglut_main.c @@ -1290,7 +1290,10 @@ void FGAPIENTRY glutMainLoopEvent( void ) /* Cease processing this event if it is auto repeated */ if (window->State.KeyRepeating) + { + if (event.type == KeyPress) window->State.KeyRepeating = GL_FALSE; break; + } if( event.type == KeyPress ) {