diff options
| author | maxim_productengine <mnikolenko@productengine.com> | 2020-02-12 17:50:49 +0200 | 
|---|---|---|
| committer | maxim_productengine <mnikolenko@productengine.com> | 2020-02-12 17:50:49 +0200 | 
| commit | c81aa53e7bd8570da82e1794a8b50eb74a3d1bee (patch) | |
| tree | 4080a84b51c6edad0699bba0c973a68bb87bc76b /indra/newview | |
| parent | b9f0eb54ce1a95adb0286302e977936ef8ed91d7 (diff) | |
SL-12695 FIXED 'New' badges are not shown for some folders after resizing 'Received items' panel
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llpanelmarketplaceinboxinventory.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/newview/llpanelmarketplaceinboxinventory.cpp b/indra/newview/llpanelmarketplaceinboxinventory.cpp index 5508bcdd81..7a6631448b 100644 --- a/indra/newview/llpanelmarketplaceinboxinventory.cpp +++ b/indra/newview/llpanelmarketplaceinboxinventory.cpp @@ -150,6 +150,12 @@ void LLInboxFolderViewFolder::draw()  	setBadgeVisibility(mFresh);  	LLFolderViewFolder::draw(); + +	if (mFresh) +	{ +		reshapeBadge(getRect()); +	} +  }  BOOL LLInboxFolderViewFolder::handleMouseDown( S32 x, S32 y, MASK mask ) | 
