summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2024-05-17 19:11:46 +0300
committerAndrey Kleshchev <andreykproductengine@lindenlab.com>2024-05-17 19:11:46 +0300
commitf2358a2d4d441dc0c70d0449bc33038a396fba36 (patch)
tree6a0e3a0faec1c56e84ed2688e18246fca7a81833 /indra
parent3066cce1996ae680501dd2166dcf9773a4e75585 (diff)
viewer#1425 Sorting in Appearance floater #2
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/app_settings/settings.xml2
-rw-r--r--indra/newview/lloutfitslist.cpp3
2 files changed, 2 insertions, 3 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 48c251240f..565d20daa1 100644
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -15744,7 +15744,7 @@
<key>OutfitListFilterFullList</key>
<map>
<key>Comment</key>
- <string> 0 - show all items in outfit as long as outfit or item inside matches. 1 - show only matches</string>
+ <string> 0 - show only matches. 1 - show all items in outfit as long as outfit or item inside matches.</string>
<key>Persist</key>
<integer>1</integer>
<key>Type</key>
diff --git a/indra/newview/lloutfitslist.cpp b/indra/newview/lloutfitslist.cpp
index 16cd3935a3..c0f13cc75f 100644
--- a/indra/newview/lloutfitslist.cpp
+++ b/indra/newview/lloutfitslist.cpp
@@ -784,7 +784,6 @@ void LLOutfitsList::onOutfitRightClick(LLUICtrl* ctrl, S32 x, S32 y, const LLUUI
}
}
-
void LLOutfitsList::handleInvFavColorChange()
{
for (outfits_map_t::iterator iter = mOutfitsMap.begin();
@@ -1563,7 +1562,7 @@ bool LLOutfitListSortMenu::onEnable(LLSD::String param)
else if ("show_entire_outfit" == param)
{
LLCachedControl<bool> filter_mode(gSavedSettings, "OutfitListFilterFullList", 0);
- return !filter_mode;
+ return filter_mode;
}
return false;