Skip to content
Snippets Groups Projects
Commit f352c81f authored by Graham Madarasz (Graham)'s avatar Graham Madarasz (Graham)
Browse files

For MAINT-2423 fix regression from CHUI merge. Code review: DaveP

parent 3d1ec8b4
No related branches found
No related tags found
No related merge requests found
...@@ -643,18 +643,9 @@ BOOL LLDrawable::updateMove() ...@@ -643,18 +643,9 @@ BOOL LLDrawable::updateMove()
return FALSE; return FALSE;
} }
BOOL done; makeActive();
if (isState(MOVE_UNDAMPED)) return isState(MOVE_UNDAMPED) ? updateMoveUndamped() : updateMoveDamped();
{
done = updateMoveUndamped();
}
else
{
makeActive();
done = updateMoveDamped();
}
return done;
} }
BOOL LLDrawable::updateMoveUndamped() BOOL LLDrawable::updateMoveUndamped()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment