diff options
author | Cosmic Linden <cosmic@lindenlab.com> | 2024-11-21 15:53:57 -0800 |
---|---|---|
committer | Cosmic Linden <cosmic@lindenlab.com> | 2024-11-22 10:54:50 -0800 |
commit | 9cb6203fd7aa5d8af2f3e1f2fc5c6d85f53a7a83 (patch) | |
tree | 55d97e9881a1d2c0a01932661a84f37d85992cd3 /indra/newview | |
parent | 934833ba97f3f8e9323fdab4c3e96e392beeeb4e (diff) |
secondlife/viewer#3104: Fix outfit gallery pictures sometimes not loading
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/lloutfitgallery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lloutfitgallery.cpp b/indra/newview/lloutfitgallery.cpp index 72fb9464d8..c3ca555330 100644 --- a/indra/newview/lloutfitgallery.cpp +++ b/indra/newview/lloutfitgallery.cpp @@ -1128,7 +1128,7 @@ bool LLOutfitGalleryItem::openOutfitsContent() bool LLOutfitGalleryItem::setImageAssetId(LLUUID image_asset_id) { - LLPointer<LLViewerFetchedTexture> texture = LLViewerTextureManager::getFetchedTexture(image_asset_id, FTT_DEFAULT, MIPMAP_YES, LLGLTexture::BOOST_NONE, LLViewerTexture::LOD_TEXTURE); + LLPointer<LLViewerFetchedTexture> texture = LLViewerTextureManager::getFetchedTexture(image_asset_id, FTT_DEFAULT, MIPMAP_YES, LLGLTexture::BOOST_NONE, LLViewerTexture::FETCHED_TEXTURE); if (texture && texture->getOriginalWidth() <= MAX_OUTFIT_PHOTO_WIDTH && texture->getOriginalHeight() <= MAX_OUTFIT_PHOTO_HEIGHT) { mImageAssetId = image_asset_id; |