Skip to content
Snippets Groups Projects
Commit 82b0a42f authored by Lynx Linden's avatar Lynx Linden
Browse files

DEV-44357: Close classified/pick details when closing Pick panel.

When we close the Pick panel, we now also close any specific
classified or pick that was opened from the pick panel.
parent bf749401
No related branches found
No related tags found
No related merge requests found
...@@ -485,6 +485,18 @@ void LLPanelPicks::onOpen(const LLSD& key) ...@@ -485,6 +485,18 @@ void LLPanelPicks::onOpen(const LLSD& key)
LLPanelProfileTab::onOpen(key); LLPanelProfileTab::onOpen(key);
} }
void LLPanelPicks::onClosePanel()
{
if (mPanelClassifiedInfo)
{
onPanelClassifiedClose(mPanelClassifiedInfo);
}
if (mPanelPickInfo)
{
onPanelPickClose(mPanelPickInfo);
}
}
void LLPanelPicks::onListCommit(const LLFlatListView* f_list) void LLPanelPicks::onListCommit(const LLFlatListView* f_list)
{ {
// Make sure only one of the lists has selection. // Make sure only one of the lists has selection.
......
...@@ -74,6 +74,8 @@ class LLPanelPicks ...@@ -74,6 +74,8 @@ class LLPanelPicks
/*virtual*/ void onOpen(const LLSD& key); /*virtual*/ void onOpen(const LLSD& key);
/*virtual*/ void onClosePanel();
void processProperties(void* data, EAvatarProcessorType type); void processProperties(void* data, EAvatarProcessorType type);
void updateData(); void updateData();
......
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