summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAndrew Dyukov <adyukov@productengine.com>2010-02-02 20:55:45 +0200
committerAndrew Dyukov <adyukov@productengine.com>2010-02-02 20:55:45 +0200
commitf0a18ec0a6cf555a44d0a81a8815445dc1d0848c (patch)
treed213f03a258f1c0360e4472db9c8f4228a8bf158 /indra/newview
parent1da3feec8b99d938aa5df6f89e785fb317c88c45 (diff)
Fixed normal bug EXT-4758 ("Call" button in IM window is disabled after call from parcel with disabled voice)
- One more voice client state is now treated by voiceWorking() as valid. --HG-- branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llvoiceclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoiceclient.cpp b/indra/newview/llvoiceclient.cpp
index c062dd1732..7c6ba33553 100644
--- a/indra/newview/llvoiceclient.cpp
+++ b/indra/newview/llvoiceclient.cpp
@@ -5981,7 +5981,7 @@ bool LLVoiceClient::voiceEnabled()
bool LLVoiceClient::voiceWorking()
{
- return (stateLoggedIn <= mState) && (mState <= stateLeavingSession);
+ return (stateLoggedIn <= mState) && (mState <= stateSessionTerminated);
}
void LLVoiceClient::setLipSyncEnabled(BOOL enabled)