diff options
| -rw-r--r-- | indra/newview/llpanelmarketplaceinboxinventory.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/llpanelmarketplaceinboxinventory.h | 1 | 
2 files changed, 7 insertions, 0 deletions
diff --git a/indra/newview/llpanelmarketplaceinboxinventory.cpp b/indra/newview/llpanelmarketplaceinboxinventory.cpp index f089faea09..0f36b644e1 100644 --- a/indra/newview/llpanelmarketplaceinboxinventory.cpp +++ b/indra/newview/llpanelmarketplaceinboxinventory.cpp @@ -159,6 +159,12 @@ BOOL LLInboxFolderViewFolder::handleDoubleClick( S32 x, S32 y, MASK mask )  	return LLFolderViewFolder::handleDoubleClick(x, y, mask);  } +void LLInboxFolderViewFolder::selectItem()
 +{
 +	deFreshify();
 +	LLFolderViewFolder::selectItem();
 +} +  void LLInboxFolderViewFolder::computeFreshness()  {  	const U32 last_expansion_utc = gSavedPerAccountSettings.getU32("LastInventoryInboxActivity"); diff --git a/indra/newview/llpanelmarketplaceinboxinventory.h b/indra/newview/llpanelmarketplaceinboxinventory.h index d398cdafed..0b27818c95 100644 --- a/indra/newview/llpanelmarketplaceinboxinventory.h +++ b/indra/newview/llpanelmarketplaceinboxinventory.h @@ -71,6 +71,7 @@ public:  	BOOL handleMouseDown(S32 x, S32 y, MASK mask);  	BOOL handleDoubleClick(S32 x, S32 y, MASK mask); +	void selectItem();  	void computeFreshness();  	void deFreshify();  | 
