update the talking status of the video window when the user leaves the audio

This commit is contained in:
Felipe Cecagno 2015-10-20 11:38:34 -02:00
parent ab83c823c7
commit 693dabf140

View File

@ -242,6 +242,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
private function handleUserVoiceChangedEvent(event:BBBEvent):void { private function handleUserVoiceChangedEvent(event:BBBEvent):void {
if (user && event.payload.userID == user.userID) { if (user && event.payload.userID == user.userID) {
updateButtons(); updateButtons();
updateTalkingStatus();
} }
} }