diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2020-09-14 12:13:33 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2020-09-14 12:13:33 +0300 |
commit | 5cceddbc359814f522e211467048ffa6d7d99c0d (patch) | |
tree | 8108aa757bc3e6a6d04064dc1f759b65ff04e004 /indra/newview/lloutfitgallery.cpp | |
parent | 8c8eac256bdb51fdf9e6e297280b2017d26c3588 (diff) |
SL-13930 Appearance sort order should be similar to Inventory sort order
Diffstat (limited to 'indra/newview/lloutfitgallery.cpp')
-rw-r--r-- | indra/newview/lloutfitgallery.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/lloutfitgallery.cpp b/indra/newview/lloutfitgallery.cpp index 852ba846ff..3d1428bb63 100644 --- a/indra/newview/lloutfitgallery.cpp +++ b/indra/newview/lloutfitgallery.cpp @@ -166,9 +166,7 @@ bool compareGalleryItem(LLOutfitGalleryItem* item1, LLOutfitGalleryItem* item2) std::string name1 = item1->getItemName(); std::string name2 = item2->getItemName(); - LLStringUtil::toUpper(name1); - LLStringUtil::toUpper(name2); - return name1 < name2; + return (LLStringUtil::compareDict(name1, name2) < 0); } else { |