diff --git a/indra/newview/llcallfloater.cpp b/indra/newview/llcallfloater.cpp index d6ae4603b46aa45eaab6d5eb1108c21eeeb10184..d82c08899772c9d7e8dd39f4bd73dcaa5c3066db 100644 --- a/indra/newview/llcallfloater.cpp +++ b/indra/newview/llcallfloater.cpp @@ -96,7 +96,9 @@ void LLCallFloater::leaveCall() { LLVoiceChannel* voice_channel = LLVoiceChannel::getCurrentVoiceChannel(); if (voice_channel && voice_channel->isActive()) + { voice_channel->deactivate(); + } } void LLCallFloater::updateSession() @@ -150,8 +152,8 @@ void LLCallFloater::updateSession() updateTitle(); //hide "Leave Call" button for nearby chat - bool isLocalChat = mVoiceType == VC_LOCAL_CHAT; - childSetVisible("leave_btn_panel", !isLocalChat); + bool is_local_chat = mVoiceType == VC_LOCAL_CHAT; + childSetVisible("leave_btn_panel", !is_local_chat); refreshPartisipantList(); } diff --git a/indra/newview/skins/default/xui/en/floater_voice_controls.xml b/indra/newview/skins/default/xui/en/floater_voice_controls.xml index c59d97457e63d3fad017e33b9c2104ffbdb6351c..2652fae214fab53ec0384e7b7db278fc5cfebdb7 100644 --- a/indra/newview/skins/default/xui/en/floater_voice_controls.xml +++ b/indra/newview/skins/default/xui/en/floater_voice_controls.xml @@ -101,7 +101,6 @@ </layout_panel> <layout_panel layout="topleft" - min_width="138" name="volume_slider_panel" top="0" user_resize="false"