diff options
author | Don Kjer <don@lindenlab.com> | 2011-04-01 23:37:30 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2011-04-01 23:37:30 +0000 |
commit | d292053c04e6adfd48be0484dd5a8a07b48e0541 (patch) | |
tree | bb8814069df178e2bcae041f2c3e9b11338492db /indra/newview/llbottomtray.cpp | |
parent | f2bb81d17660054697ed984afc0e3f8d90f77eda (diff) | |
parent | 1664c9dc678f7aca9c2bbf38d28e00550e03c4dd (diff) |
Merge with viewer-development
Diffstat (limited to 'indra/newview/llbottomtray.cpp')
-rw-r--r-- | indra/newview/llbottomtray.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/indra/newview/llbottomtray.cpp b/indra/newview/llbottomtray.cpp index 97d7757339..919f8ef666 100644 --- a/indra/newview/llbottomtray.cpp +++ b/indra/newview/llbottomtray.cpp @@ -56,6 +56,7 @@ #include "llviewerwindow.h" #include "llsdserialize.h" +#include "llfirstuse.h" // Distance from mouse down on which drag'n'drop should be started. #define DRAG_START_DISTANCE 3 @@ -382,7 +383,12 @@ void LLBottomTray::onChange(EStatusType status, const std::string &channelURI, b // skipped to avoid button blinking if (status != STATUS_JOINING && status!= STATUS_LEFT_CHANNEL) { - mSpeakBtn->setFlyoutBtnEnabled(LLVoiceClient::getInstance()->voiceEnabled() && LLVoiceClient::getInstance()->isVoiceWorking()); + bool voice_status = LLVoiceClient::getInstance()->voiceEnabled() && LLVoiceClient::getInstance()->isVoiceWorking(); + mSpeakBtn->setFlyoutBtnEnabled(voice_status); + if (voice_status) + { + LLFirstUse::speak(true); + } } } @@ -564,6 +570,7 @@ BOOL LLBottomTray::postBuild() mSpeakPanel = getChild<LLPanel>("speak_panel"); mSpeakBtn = getChild<LLSpeakButton>("talk"); + LLHints::registerHintTarget("speak_btn", mSpeakBtn->getHandle()); // Both parts of speak button should be initially disabled because // it takes some time between logging in to world and connecting to voice channel. |