diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-11-05 01:02:58 +0200 | 
|---|---|---|
| committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2022-11-05 01:02:58 +0200 | 
| commit | 4d429b7ea31f51f653e0e2ad6b5799a515e28334 (patch) | |
| tree | d18040f8852591a628e60d2ffd10b06d73b48b36 /indra | |
| parent | 6a6b10020ed607e7d4b39c7955fa572fc6848e88 (diff) | |
SL-18581 Don't show the starter avatar toolbar button for NUX
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/lltoolbarview.cpp | 17 | 
1 files changed, 17 insertions, 0 deletions
| diff --git a/indra/newview/lltoolbarview.cpp b/indra/newview/lltoolbarview.cpp index 01d799dcd5..752fc6f3f3 100644 --- a/indra/newview/lltoolbarview.cpp +++ b/indra/newview/lltoolbarview.cpp @@ -44,6 +44,7 @@  #include "llagent.h"  // HACK for destinations guide on startup  #include "llfloaterreg.h"  // HACK for destinations guide on startup  #include "llviewercontrol.h"  // HACK for destinations guide on startup +#include "llinventorymodel.h" // HACK to disable starter avatars button for NUX  #include <boost/foreach.hpp> @@ -319,6 +320,22 @@ bool LLToolBarView::loadToolbars(bool force_default)  			}  		}  	} + +    // SL-18581: Don't show the starter avatar toolbar button for NUX users +    LLViewerInventoryCategory* my_outfits_cat = gInventory.getCategory(gInventory.findCategoryUUIDForType(LLFolderType::FT_MY_OUTFITS)); +    if (gAgent.isFirstLogin() +        && my_outfits_cat != NULL +        && my_outfits_cat->getDescendentCount() > 0) +    { +        for (S32 i = LLToolBarEnums::TOOLBAR_FIRST; i <= LLToolBarEnums::TOOLBAR_LAST; i++) +        { +            if (mToolbars[i]) +            { +                mToolbars[i]->removeCommand(LLCommandId("avatar")); +            } +        } +    } +  	mToolbarsLoaded = true;  	return true;  } | 
