diff options
author | Lynx Linden <lynx@lindenlab.com> | 2009-12-21 16:45:23 +0000 |
---|---|---|
committer | Lynx Linden <lynx@lindenlab.com> | 2009-12-21 16:45:23 +0000 |
commit | 82b0a42f86b9eb0ce45635cd91d689e9400e7824 (patch) | |
tree | 44712b32234043ade9e4c1fbfb79182278e0f0a3 | |
parent | bf7494017f5d90624243e5069dea9342c6b1869c (diff) |
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.
-rw-r--r-- | indra/newview/llpanelpicks.cpp | 12 | ||||
-rw-r--r-- | indra/newview/llpanelpicks.h | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/indra/newview/llpanelpicks.cpp b/indra/newview/llpanelpicks.cpp index 4d22d96072..69fa110d11 100644 --- a/indra/newview/llpanelpicks.cpp +++ b/indra/newview/llpanelpicks.cpp @@ -485,6 +485,18 @@ void LLPanelPicks::onOpen(const LLSD& key) LLPanelProfileTab::onOpen(key); } +void LLPanelPicks::onClosePanel() +{ + if (mPanelClassifiedInfo) + { + onPanelClassifiedClose(mPanelClassifiedInfo); + } + if (mPanelPickInfo) + { + onPanelPickClose(mPanelPickInfo); + } +} + void LLPanelPicks::onListCommit(const LLFlatListView* f_list) { // Make sure only one of the lists has selection. diff --git a/indra/newview/llpanelpicks.h b/indra/newview/llpanelpicks.h index fd8a9e6938..1b2e35ca46 100644 --- a/indra/newview/llpanelpicks.h +++ b/indra/newview/llpanelpicks.h @@ -74,6 +74,8 @@ public: /*virtual*/ void onOpen(const LLSD& key); + /*virtual*/ void onClosePanel(); + void processProperties(void* data, EAvatarProcessorType type); void updateData(); |