EXT-4841 - Expand one of the outfits in the outfits tab for new users so they can get a sense of their contents.
Also moved the My Outfits autopopulation from the library out of where it was done before (as a result of initial wearables message) to be done in the idle login during the precaching state. -Reviewed by Nyxmaster
parent
76cf7ebf70
commit
b3f4c6fb7a
|
|
@ -927,13 +927,6 @@ void LLAgentWearables::processAgentInitialWearablesUpdate(LLMessageSystem* mesgs
|
|||
if (mInitialWearablesUpdateReceived)
|
||||
return;
|
||||
mInitialWearablesUpdateReceived = true;
|
||||
|
||||
// If this is the very first time the user has logged into viewer2+ (from a legacy viewer, or new account)
|
||||
// then auto-populate outfits from the library into the My Outfits folder.
|
||||
if (LLInventoryModel::getIsFirstTimeInViewer2() || gSavedSettings.getBOOL("MyOutfitsAutofill"))
|
||||
{
|
||||
gAgentWearables.populateMyOutfitsFolder();
|
||||
}
|
||||
|
||||
LLUUID agent_id;
|
||||
gMessageSystem->getUUIDFast(_PREHASH_AgentData, _PREHASH_AgentID, agent_id);
|
||||
|
|
|
|||
|
|
@ -159,6 +159,27 @@ void LLPanelOutfitsInventory::onOpen(const LLSD& key)
|
|||
// Make sure we know which tab is selected, update the filter,
|
||||
// and update verbs.
|
||||
onTabChange();
|
||||
|
||||
// Auto open the first outfit newly created so new users can see sample outfit contents
|
||||
static bool should_open_outfit = true;
|
||||
if (should_open_outfit && gAgent.isFirstLogin())
|
||||
{
|
||||
LLInventoryPanel* outfits_panel = getChild<LLInventoryPanel>(OUTFITS_TAB_NAME);
|
||||
if (outfits_panel)
|
||||
{
|
||||
LLUUID my_outfits_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_MY_OUTFITS);
|
||||
LLFolderViewFolder* my_outfits_folder = outfits_panel->getRootFolder()->getFolderByID(my_outfits_id);
|
||||
if (my_outfits_folder)
|
||||
{
|
||||
LLFolderViewFolder* first_outfit = dynamic_cast<LLFolderViewFolder*>(my_outfits_folder->getFirstChild());
|
||||
if (first_outfit)
|
||||
{
|
||||
first_outfit->setOpen(TRUE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
should_open_outfit = false;
|
||||
}
|
||||
|
||||
void LLPanelOutfitsInventory::updateVerbs()
|
||||
|
|
|
|||
|
|
@ -1876,6 +1876,17 @@ bool idle_startup()
|
|||
LLViewerShaderMgr::instance()->setShaders();
|
||||
}
|
||||
}
|
||||
|
||||
// If this is the very first time the user has logged into viewer2+ (from a legacy viewer, or new account)
|
||||
// then auto-populate outfits from the library into the My Outfits folder.
|
||||
static bool check_populate_my_outfits = true;
|
||||
if (check_populate_my_outfits &&
|
||||
(LLInventoryModel::getIsFirstTimeInViewer2()
|
||||
|| gSavedSettings.getBOOL("MyOutfitsAutofill")))
|
||||
{
|
||||
gAgentWearables.populateMyOutfitsFolder();
|
||||
}
|
||||
check_populate_my_outfits = false;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue