Skip to content
Snippets Groups Projects
Commit 27f5fece authored by Yuri Chebotarev's avatar Yuri Chebotarev
Browse files

fix for low Bug EXT-2756 side tray button are gray instead of white

--HG--
branch : product-engine
parent 87ed47c9
No related branches found
No related tags found
No related merge requests found
...@@ -583,6 +583,17 @@ void LLSideTray::expandSideBar() ...@@ -583,6 +583,17 @@ void LLSideTray::expandSideBar()
mActiveTab->onOpen(key); mActiveTab->onOpen(key);
reflectCollapseChange(); reflectCollapseChange();
std::string name = mActiveTab->getName();
std::map<std::string,LLButton*>::const_iterator btn_it =
mTabButtons.find(name);
if (btn_it != mTabButtons.end())
{
LLButton* btn = btn_it->second;
btn->setImageOverlay( mActiveTab->mImageSelected );
}
} }
void LLSideTray::highlightFocused() void LLSideTray::highlightFocused()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment