From a1709abbee7e5047e7da55d165b10bd137fa8113 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 17 Aug 2009 15:45:43 +0000 Subject: [PATCH] Changed the autorun keys to 'g' for go, and 'h' for halt. --- src/osgPresentation/SlideEventHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/osgPresentation/SlideEventHandler.cpp b/src/osgPresentation/SlideEventHandler.cpp index b60b6a3c8..6d43078c8 100644 --- a/src/osgPresentation/SlideEventHandler.cpp +++ b/src/osgPresentation/SlideEventHandler.cpp @@ -833,7 +833,7 @@ bool SlideEventHandler::handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIAction _timeLastKeyPresses = time; - if (ea.getKey()=='a') + if (ea.getKey()=='g') { if (!_autoSteppingActive) { @@ -842,7 +842,7 @@ bool SlideEventHandler::handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIAction } return true; } - else if (ea.getKey()=='q') + else if (ea.getKey()=='h') { if (_autoSteppingActive) {