summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorTodd Stinson <stinson@lindenlab.com>2012-01-20 10:52:32 -0800
committerTodd Stinson <stinson@lindenlab.com>2012-01-20 10:52:32 -0800
commit54951581a865b4d450a25d0c7fd780b82dad10ae (patch)
tree005d6246f8b010eb4cd8e52121fdd5a9afdfe145 /indra/newview
parenta912a5e23daad7d17ed336595284a2e4e2bdd027 (diff)
Fixing an issue with the linkset filtering that was not properly excluding obstacle linksets.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llfloaterpathfindinglinksets.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterpathfindinglinksets.cpp b/indra/newview/llfloaterpathfindinglinksets.cpp
index 26830390e0..d01732d05f 100644
--- a/indra/newview/llfloaterpathfindinglinksets.cpp
+++ b/indra/newview/llfloaterpathfindinglinksets.cpp
@@ -515,7 +515,7 @@ const PathfindingLinksets::PathfindingLinksetMap& PathfindingLinksets::getFilter
BOOL PathfindingLinksets::isFiltersActive() const
{
- return (mNameFilter.isActive() || mDescriptionFilter.isActive() || !mIsWalkableFilter || !mIsIgnoredFilter || !mIsIgnoredFilter);
+ return (mNameFilter.isActive() || mDescriptionFilter.isActive() || !mIsWalkableFilter || !mIsObstacleFilter || !mIsIgnoredFilter);
}
void PathfindingLinksets::setNameFilter(const std::string& pNameFilter)