From 574e6cb3907ad61747732883c361f114c17809f0 Mon Sep 17 00:00:00 2001
From: Mike Antipov <mantipov@productengine.com>
Date: Tue, 25 May 2010 15:36:05 +0300
Subject: [PATCH] EXT-7471 PARTIAL FIXED Ensure bottom tray chatbar can always
 be resized by user.

Seems, there is a problem somewhere in rendering of LLLAyoutStack children. Last visible panel marked as user_resize=true can not be resized and has no resize cursor.
Because we have no time & resources to investigate this closely a workaround is implemented for bottom tray:
 * set user_resize for layout panel with Speak button which is always visible to user;
 * set user_resize=false to don't have Speak button panel resizable.

Reviewed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/438/

--HG--
branch : product-engine
---
 indra/newview/skins/default/xui/en/panel_bottomtray.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/indra/newview/skins/default/xui/en/panel_bottomtray.xml b/indra/newview/skins/default/xui/en/panel_bottomtray.xml
index bfc40a86383..ac61c7da5d6 100644
--- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml
+++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml
@@ -67,7 +67,7 @@
          mouse_opaque="false"
          name="speak_panel"
          top_delta="0"
-         user_resize="false"
+         user_resize="true"
          width="110">
             <talk_button
              follows="left|right"
@@ -193,6 +193,7 @@
          min_width="40"
          mouse_opaque="false"
          name="snapshot_panel"
+         user_resize="false"
          width="39">
             <button
              follows="left|right"
-- 
GitLab