Changed the throw dection time to 0.02

This commit is contained in:
Robert Osfield
2007-06-12 09:55:40 +00:00
parent 3eb4c3baa6
commit aa970f2a30
2 changed files with 2 additions and 2 deletions

View File

@@ -213,7 +213,7 @@ bool NodeTrackerManipulator::handle(const GUIEventAdapter& ea,GUIActionAdapter&
{
double timeSinceLastRecordEvent = ea.getTime() - _ga_t0->getTime();
if (timeSinceLastRecordEvent>0.01) addMouseEvent(ea);
if (timeSinceLastRecordEvent>0.02) addMouseEvent(ea);
if (isMouseMoving())
{

View File

@@ -108,7 +108,7 @@ bool TrackballManipulator::handle(const GUIEventAdapter& ea,GUIActionAdapter& us
{
double timeSinceLastRecordEvent = ea.getTime() - _ga_t0->getTime();
if (timeSinceLastRecordEvent>0.01) addMouseEvent(ea);
if (timeSinceLastRecordEvent>0.02) addMouseEvent(ea);
if (isMouseMoving())
{