diff options
author | Todd Stinson <stinson@lindenlab.com> | 2012-01-20 13:44:45 -0800 |
---|---|---|
committer | Todd Stinson <stinson@lindenlab.com> | 2012-01-20 13:44:45 -0800 |
commit | 60b1856070e0a2c9c87474d53f3ad8ca29351ee5 (patch) | |
tree | dc22411a411e7a3bf323db0740707a7215798e9e /indra/newview | |
parent | 98dfd7ddd2083c380aabbb686ca99dfd3bf033e9 (diff) |
Setting initial sorting of the linksets to be ascending by name.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloaterpathfindinglinksets.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llfloaterpathfindinglinksets.cpp b/indra/newview/llfloaterpathfindinglinksets.cpp index d01732d05f..938c961ad2 100644 --- a/indra/newview/llfloaterpathfindinglinksets.cpp +++ b/indra/newview/llfloaterpathfindinglinksets.cpp @@ -624,6 +624,7 @@ BOOL LLFloaterPathfindingLinksets::postBuild() llassert(mLinksetsScrollList != NULL);
mLinksetsScrollList->setCommitCallback(boost::bind(&LLFloaterPathfindingLinksets::onLinksetsSelectionChange, this));
mLinksetsScrollList->setCommitOnSelectionChange(true);
+ mLinksetsScrollList->sortByColumnIndex(0, true);
mLinksetsStatus = findChild<LLTextBase>("linksets_status");
llassert(mLinksetsStatus != NULL);
|