diff options
author | andreykproductengine <akleshchev@productengine.com> | 2016-03-29 18:52:54 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2016-03-29 18:52:54 +0300 |
commit | 0e155c51a95f092dda4f1ee71b4de46c7e98c10d (patch) | |
tree | 4b43aa9a820613fbcd58eddf4959feff6dbfe600 /indra/newview/llgroupiconctrl.cpp | |
parent | 783cc9756ad6cc07d27bf985171c922aa20b0fc8 (diff) |
MAINT-6257 Textures loading issues.
Diffstat (limited to 'indra/newview/llgroupiconctrl.cpp')
-rwxr-xr-x | indra/newview/llgroupiconctrl.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/indra/newview/llgroupiconctrl.cpp b/indra/newview/llgroupiconctrl.cpp index 1974a073dd..271dd44c1f 100755 --- a/indra/newview/llgroupiconctrl.cpp +++ b/indra/newview/llgroupiconctrl.cpp @@ -64,7 +64,8 @@ LLGroupIconCtrl::LLGroupIconCtrl(const LLGroupIconCtrl::Params& p) } else { - LLIconCtrl::setValue(mDefaultIconName); + //TODO: Consider implementing dedicated setDefault() function instead of passing priority for local file + LLIconCtrl::setValue(mDefaultIconName, LLViewerFetchedTexture::BOOST_UI); } } @@ -73,6 +74,11 @@ LLGroupIconCtrl::~LLGroupIconCtrl() LLGroupMgr::getInstance()->removeObserver(this); } +void LLGroupIconCtrl::setIconId(const LLSD& value) +{ + LLIconCtrl::setValue(value); +} + void LLGroupIconCtrl::setValue(const LLSD& value) { if (value.isUUID()) @@ -91,7 +97,7 @@ void LLGroupIconCtrl::setValue(const LLSD& value) // Check if cache already contains image_id for that group if (!updateFromCache()) { - LLIconCtrl::setValue(mDefaultIconName); + LLIconCtrl::setValue(mDefaultIconName, LLViewerFetchedTexture::BOOST_UI); gm->addObserver(this); gm->sendGroupPropertiesRequest(mGroupId); } @@ -122,7 +128,7 @@ bool LLGroupIconCtrl::updateFromCache() } else { - LLIconCtrl::setValue(mDefaultIconName); + LLIconCtrl::setValue(mDefaultIconName, LLViewerFetchedTexture::BOOST_UI); } if (mDrawTooltip && !group_data->mName.empty()) |