diff options
| author | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-07 17:01:07 +0200 | 
|---|---|---|
| committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2009-12-07 17:01:07 +0200 | 
| commit | 48803059de80263d5b605edaf58ad9c42db5359e (patch) | |
| tree | e9d1742cd4ef48baa2b202bfb4046b0215f38d04 /indra | |
| parent | c6177836ecbe95f75d79f572303a879bf37b3226 (diff) | |
EXT-2989  Chiclet overlaps the voice indicator of another chiclet
see comments for details
--HG--
branch : product-engine
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llchiclet.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index 5fad030e5b..330151d710 100644 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -401,6 +401,10 @@ LLIMP2PChiclet::LLIMP2PChiclet(const Params& p)  	sendChildToFront(mNewMessagesIcon);  	setShowSpeaker(p.show_speaker); + +	//since mShowSpeaker initialized with false  +	//setShowSpeaker(false) will not hide mSpeakerCtrl +	mSpeakerCtrl->setVisible(getShowSpeaker());  }  void LLIMP2PChiclet::setCounter(S32 counter) | 
