Reverted inventory search behavor to pre v2. (search is per-panel, not global to the inventory floater)

This commit is contained in:
Shyotl
2012-02-28 18:46:54 -06:00
parent 2f632d3324
commit fb10af2723
5 changed files with 25 additions and 15 deletions

View File

@@ -5245,6 +5245,13 @@ void LLWearableBridge::wearOnAvatar()
void LLWearableBridge::wearAddOnAvatar()
{
// TODO: investigate wearables may not be loaded at this point EXT-8231
// Don't wear anything until initial wearables are loaded, can
// destroy clothing items.
if (!gAgentWearables.areWearablesLoaded())
{
LLNotificationsUtil::add("CanNotChangeAppearanceUntilLoaded");
return;
}
LLViewerInventoryItem* item = getItem();
if(item)