summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/newview/app_settings/settings.xml2
-rw-r--r--indra/newview/llcallfloater.cpp30
2 files changed, 29 insertions, 3 deletions
diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 53ac1dc0b9..8b66dcb2da 100644
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -1154,7 +1154,7 @@
<key>Type</key>
<string>S32</string>
<key>Value</key>
- <integer>1</integer>
+ <integer>5</integer>
</map>
<key>CameraAngle</key>
<map>
diff --git a/indra/newview/llcallfloater.cpp b/indra/newview/llcallfloater.cpp
index 6317a6a392..49532aec12 100644
--- a/indra/newview/llcallfloater.cpp
+++ b/indra/newview/llcallfloater.cpp
@@ -54,6 +54,7 @@
#include "lllayoutstack.h"
static void get_voice_participants_uuids(std::vector<LLUUID>& speakers_uuids);
+void reshape_floater(LLCallFloater* floater, S32 delta_height);
class LLNonAvatarCaller : public LLAvatarListItem
{
@@ -315,8 +316,33 @@ void LLCallFloater::updateSession()
//hide "Leave Call" button for nearby chat
bool is_local_chat = mVoiceType == VC_LOCAL_CHAT;
- childSetVisible("leave_call_btn_panel", !is_local_chat);
-
+
+ LLPanel* leave_panel = findChild<LLPanel>("leave_call_btn_panel");
+ if (leave_panel)
+ {
+ S32 delta = 0;
+ bool visible = !is_local_chat;
+ if (leave_panel->getVisible() != visible)
+ {
+ delta = visible
+ ? leave_panel->getRect().getHeight()
+ : -leave_panel->getRect().getHeight();
+ }
+ leave_panel->setVisible(visible);
+ if (delta)
+ {
+ LLLayoutStack* stack = getChild<LLLayoutStack>("my_call_stack");
+ BOOL animate = stack->getAnimate();
+ // Disable animation to prevent layout updating in several frames.
+ // We need this to get work reshapeToFitContent properly, otherwise
+ // the height of leave_call_btn_panel won't be completely included.
+ stack->setAnimate(FALSE);
+ reshape_floater(this, delta);
+ // Restore animate state.
+ stack->setAnimate(animate);
+ }
+ }
+
refreshParticipantList();
updateAgentModeratorState();