diff options
| author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-08-03 18:02:28 +0300 | 
|---|---|---|
| committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2012-08-03 18:02:28 +0300 | 
| commit | 3b525b788da802c8847bb2b5881c45519109ac11 (patch) | |
| tree | f7d99af60884237e36c56685f4337de98584d0a5 /indra/newview | |
| parent | 118e3b33bd417331397f89770d46b1b3eeeffc8e (diff) | |
CHUI-241 (Add drag handle in UI to resize width of conversations list): implemented drag handle via predefined params of layout panels
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_im_container.xml | 12 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_im_session.xml | 39 | 
2 files changed, 28 insertions, 23 deletions
| diff --git a/indra/newview/skins/default/xui/en/floater_im_container.xml b/indra/newview/skins/default/xui/en/floater_im_container.xml index e8ef3c1df9..ea6fd65b95 100644 --- a/indra/newview/skins/default/xui/en/floater_im_container.xml +++ b/indra/newview/skins/default/xui/en/floater_im_container.xml @@ -31,10 +31,12 @@       width="680">          <layout_panel           auto_resize="true" +         user_resize="true"                   height="430"           name="conversations_layout_panel"           min_dim="51" -         width="268"> +         width="268" +         min_width="120">              <layout_stack               animate="false"                follows="left|top|right" @@ -107,17 +109,19 @@          </layout_panel>          <layout_panel           auto_resize="true" +         user_resize="true"           height="430"           name="messages_layout_panel" -         width="412"> +         width="412" +         min_width="205">              <panel_container               follows="all"               height="430"               layout="topleft" -             left="10" +             left="0"               name="im_box_tab_container"               top="0" -             width="402"/> +             width="412"/>          </layout_panel>      </layout_stack>  </multi_floater> 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 675967035f..4abe4d6941 100644 --- a/indra/newview/skins/default/xui/en/floater_im_session.xml +++ b/indra/newview/skins/default/xui/en/floater_im_session.xml @@ -213,8 +213,8 @@              </layout_panel>              <layout_panel               height="248" -             width="234" -          layout="topleft" +             width="230" +             layout="topleft"               follows="all"               left_delta="0"               top_delta="0" @@ -231,28 +231,29 @@           name="chat_history"           parse_highlights="true"           parse_urls="true" -        left="1" -             		width="229"> +       	 width="230" +       	 left="0">          </chat_history>              </layout_panel>             </layout_stack>             </panel>              <chat_editor -         bottom="0" -              expand_lines_count="5" -         follows="left|right|bottom" -	 font="SansSerifSmall" -              visible="true" -         height="20" -              is_expandable="true" -         label="To" -         layout="bottomleft" -         name="chat_editor" -              max_length="1023" -         spellcheck="true" -         tab_group="3" -              width="240" -              wrap="true"> +             bottom="0" +             expand_lines_count="5" +             follows="left|right|bottom" +	         font="SansSerifSmall" +             visible="true" +             height="20" +             is_expandable="true" +             label="To" +             layout="bottomleft" +             name="chat_editor" +             max_length="1023" +             spellcheck="true" +             tab_group="3" +             width="220" +             left="10" +             wrap="true">              </chat_editor>      </layout_panel>    </layout_stack> | 
