summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-04-11 13:39:25 -0700
committerTodd Stinson <stinson@lindenlab.com>2012-04-11 13:39:25 -0700
commitdfdbfdbed603d762ad01dcaa84f8a8d06dac0169 (patch)
treeead837cfade31dea83693e14ebcc96eccbc9dd4e /indra
parentad541b486daf8d033efa55baf5969549ee83c597 (diff)
Should not be recomputing the temporary path when settin gthe width and type.
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llpathfindingpathtool.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/newview/llpathfindingpathtool.cpp b/indra/newview/llpathfindingpathtool.cpp
index 03e441a7f2..0497a8972f 100644
--- a/indra/newview/llpathfindingpathtool.cpp
+++ b/indra/newview/llpathfindingpathtool.cpp
@@ -229,7 +229,6 @@ void LLPathfindingPathTool::setCharacterWidth(F32 pCharacterWidth)
mFinalPathData.mCharacterWidth = pCharacterWidth;
mTempPathData.mCharacterWidth = pCharacterWidth;
computeFinalPath();
- computeTempPath();
}
LLPathfindingPathTool::ECharacterType LLPathfindingPathTool::getCharacterType() const
@@ -267,7 +266,6 @@ void LLPathfindingPathTool::setCharacterType(ECharacterType pCharacterType)
mFinalPathData.mCharacterType = characterType;
mTempPathData.mCharacterType = characterType;
computeFinalPath();
- computeTempPath();
}
bool LLPathfindingPathTool::isRenderPath() const