From 91c73c6da19eb25faccc2a63d624e65d258eb4dc Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 28 Oct 2002 09:43:21 +0000 Subject: [PATCH] Removed the remapping of special keys to keyboard events. --- src/osgGLUT/Window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgGLUT/Window.cpp b/src/osgGLUT/Window.cpp index 78bd3b3c8..45cb0dfc7 100644 --- a/src/osgGLUT/Window.cpp +++ b/src/osgGLUT/Window.cpp @@ -144,8 +144,8 @@ void Window::keyboardCB(unsigned char key, int x, int y) void Window::specialCB(int key, int x, int y) { - s_theWindow->special(key,x,y); - s_theWindow->check_if_exit(); +// s_theWindow->special(key,x,y); +// s_theWindow->check_if_exit(); } void Window::spaceballMotionCB(int x, int y, int z)