From 04e5e572af10abe0725bd9312f1945be26688a83 Mon Sep 17 00:00:00 2001 From: "John F. Fay" Date: Wed, 19 Sep 2007 04:15:14 +0000 Subject: [PATCH] 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 --- src/freeglut_main.c | 3 +++ 1 file changed, 3 insertions(+) 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 ) { -- 1.7.10.4