diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-02-07 18:45:34 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-02-07 18:45:34 -0800 |
commit | 5c652e5f614807b8efc45819df1588c0508e9d34 (patch) | |
tree | 2bde2f3147bab8545f90c3e54e58844287231c75 /indra/newview | |
parent | e21b685172046c4895a2a48376b485fbafedf66c (diff) |
PATH-245: Disabling character selection through the character floater as it is seeming to cause weird artifacts in its current state.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterpathfindingcharacters.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpathfindingcharacters.cpp b/indra/newview/llfloaterpathfindingcharacters.cpp index 9788fe5760..de431bbf89 100644 --- a/indra/newview/llfloaterpathfindingcharacters.cpp +++ b/indra/newview/llfloaterpathfindingcharacters.cpp @@ -268,6 +268,7 @@ void LLFloaterPathfindingCharacters::setMessagingState(EMessagingState pMessagin void LLFloaterPathfindingCharacters::onCharactersSelectionChange()
{
+#if 0
std::vector<LLScrollListItem*> selectedItems = mCharactersScrollList->getAllSelected();
LLSelectMgr::getInstance()->deselectAll();
@@ -296,6 +297,7 @@ void LLFloaterPathfindingCharacters::onCharactersSelectionChange() mSelection = LLSelectMgr::getInstance()->selectObjectAndFamily(viewerObjects);
}
}
+#endif
updateCharactersStatusMessage();
updateActionFields();
|