diff options
| -rw-r--r-- | indra/newview/llimfloater.cpp | 6 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_im_session.xml | 4 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_group_control_panel.xml | 3 | 
3 files changed, 6 insertions, 7 deletions
| diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index dbbf98ad08..4a487bd5a7 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -106,10 +106,10 @@ void LLIMFloater::onFocusReceived()  // virtual  void LLIMFloater::onClose(bool app_quitting)  { -	if (!gIMMgr->hasSession(mSessionID)) return; -	  	setTyping(false); -	gIMMgr->leaveSession(mSessionID); +	// SJB: We want the close button to hide the session window, not end it +	// *NOTE: Yhis is functional, but not ideal - it's still closing the floater; we really want to change the behavior of the X button instead. +	//gIMMgr->leaveSession(mSessionID);  }  /* static */ diff --git a/indra/newview/skins/default/xui/en/floater_im_session.xml b/indra/newview/skins/default/xui/en/floater_im_session.xml index e972cf39bf..c20aaea2aa 100644 --- a/indra/newview/skins/default/xui/en/floater_im_session.xml +++ b/indra/newview/skins/default/xui/en/floater_im_session.xml @@ -10,9 +10,9 @@   top="0"   can_close="true"   can_dock="true" - can_minimize="true" + can_minimize="false"   visible="true" - width="350" + width="300"   can_resize="true"   min_width="300"   min_height="350"> diff --git a/indra/newview/skins/default/xui/en/panel_group_control_panel.xml b/indra/newview/skins/default/xui/en/panel_group_control_panel.xml index 763dd7b922..2fee2033f6 100644 --- a/indra/newview/skins/default/xui/en/panel_group_control_panel.xml +++ b/indra/newview/skins/default/xui/en/panel_group_control_panel.xml @@ -8,7 +8,7 @@      <avatar_list       color="DkGray2"       follows="left|top|right|bottom" -     height="130" +     height="100"       ignore_online_status="true"       layout="topleft"       left="3" @@ -32,7 +32,6 @@       background_visible="true"       bg_alpha_color="0.2 0.2 0.2 1"       border="false" -     bottom="1"       follows="left|bottom"       height="70"       left="0" | 
