diff options
author | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-22 14:30:06 +0200 |
---|---|---|
committer | Ychebotarev ProductEngine <ychebotarev@productengine.com> | 2010-02-22 14:30:06 +0200 |
commit | 57fe28e439ecba307b0e5cce8edc0ce85b7b1fb8 (patch) | |
tree | ac690f277a7c3f2964d0da3141903dd9584b68b4 /indra | |
parent | 6f98e0b9721515065b84d32428b0e55a4bde89d3 (diff) |
fix for normal "Archived Notice" field not cleared when looking at notice list of another group
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llpanelgroupnotices.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llpanelgroupnotices.cpp b/indra/newview/llpanelgroupnotices.cpp index 6210973dae..5f913d5469 100644 --- a/indra/newview/llpanelgroupnotices.cpp +++ b/indra/newview/llpanelgroupnotices.cpp @@ -652,6 +652,9 @@ void LLPanelGroupNotices::setGroupID(const LLUUID& id) LLGroupDropTarget* target = getChild<LLGroupDropTarget> ("drop_target"); target->setPanel (this); target->setGroup (mGroupID); + + if(mViewMessage) + mViewMessage->clear(); activate(); } |