diff options
| author | Igor Borovkov <iborovkov@productengine.com> | 2010-01-25 18:06:01 +0200 | 
|---|---|---|
| committer | Igor Borovkov <iborovkov@productengine.com> | 2010-01-25 18:06:01 +0200 | 
| commit | e3e4a301ab00d62d7ecf5d5ce2f4d217bc6c79e0 (patch) | |
| tree | 5a07b81c9d329ba6323cc0ce557de2d4d136a1b8 | |
| parent | 6e932911d5b0a02b44caf3bf81a9c00fd0e1dc89 (diff) | |
implemented EXT-4567 [BSI] private voice floaters do not contain standard X buttons
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llimview.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index c2a7969c0d..32b0cbff38 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -1680,6 +1680,7 @@ void LLOutgoingCallDialog::show(const LLSD& key)  	case LLVoiceChannel::STATE_ERROR :  		getChild<LLTextBox>("noanswer")->setVisible(true);  		getChild<LLButton>("Cancel")->setVisible(false); +		setCanClose(true);  		mLifetimeTimer.start();  		break;  	case LLVoiceChannel::STATE_HUNG_UP : @@ -1692,6 +1693,7 @@ void LLOutgoingCallDialog::show(const LLSD& key)  			getChild<LLTextBox>("nearby")->setVisible(true);  		}  		getChild<LLButton>("Cancel")->setVisible(false); +		setCanClose(true);  		mLifetimeTimer.start();  	} | 
