diff options
| author | Richard Linden <none@none> | 2011-10-26 17:38:44 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2011-10-26 17:38:44 -0700 | 
| commit | a556fcf2784907ee3d7e9e6e6a3ae1f89dcf5aa0 (patch) | |
| tree | bca995cbcaa3064520563d79c88a693969fceb8b | |
| parent | f3c0bbf1620a3a65eaa517903467a2a65681e106 (diff) | |
EXP-1458 FIX Chat text entry bar does not have focus when chat floater is opened while chat history is toggled open
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_chat_bar.xml | 100 | 
1 files changed, 53 insertions, 47 deletions
| diff --git a/indra/newview/skins/default/xui/en/floater_chat_bar.xml b/indra/newview/skins/default/xui/en/floater_chat_bar.xml index 86191b789c..e7eb7652c7 100644 --- a/indra/newview/skins/default/xui/en/floater_chat_bar.xml +++ b/indra/newview/skins/default/xui/en/floater_chat_bar.xml @@ -15,6 +15,7 @@   min_height="60"   min_width="150"   can_resize="true" + default_tab_group="1"   name="chat_bar"   width="380">      <panel @@ -23,54 +24,59 @@          follow="all"          width="380"          height="0" -        visible="false" +        visible="true"          filename="panel_nearby_chat.xml"          name="nearby_chat" /> -    <panel width="380" height="31" left="0" bottom="-1" follows="left|right|bottom"> -    <line_editor -     border_style="line" -     border_thickness="1" -     follows="left|right" -     height="23" -     label="Click here to chat." -     layout="topleft" -     left_delta="7" -     left="0" -     max_length_bytes="1023" -     name="chat_box" -     text_pad_left="5" -     text_pad_right="25" -     tool_tip="Press Enter to say, Ctrl+Enter to shout" -     top="2" -     width="335" /> -    <output_monitor -     auto_update="true" -     follows="right" -     draw_border="false" -     height="16" -     layout="topleft" -     left_pad="-24" -     mouse_opaque="true" -     name="chat_zone_indicator" -     top="6" -     visible="true" -     width="20" /> -    <button -     follows="right" -     is_toggle="true" -     width="20" -     top="2" -     layout="topleft" -     left_pad="12" -     image_disabled="ComboButton_UpOff" -     image_unselected="ComboButton_UpOff" -     image_selected="ComboButton_On" -     image_pressed="ComboButton_UpSelected" -     image_pressed_selected="ComboButton_Selected" -     height="23" -     chrome="true" -     name="show_nearby_chat" -     tool_tip="Shows/hides nearby chat log"> -    </button> +    <panel width="380"  +           height="31"  +           left="0"  +           bottom="-1"  +           follows="left|right|bottom"  +           tab_group="1"> +      <line_editor +        border_style="line" +        border_thickness="1" +        follows="left|right" +        height="23" +        label="Click here to chat." +        layout="topleft" +        left_delta="7" +        left="0" +        max_length_bytes="1023" +        name="chat_box" +        text_pad_left="5" +        text_pad_right="25" +        tool_tip="Press Enter to say, Ctrl+Enter to shout" +        top="2" +        width="335" /> +      <output_monitor +        auto_update="true" +        follows="right" +        draw_border="false" +        height="16" +        layout="topleft" +        left_pad="-24" +        mouse_opaque="true" +        name="chat_zone_indicator" +        top="6" +        visible="true" +        width="20" /> +      <button +        follows="right" +        is_toggle="true" +        width="20" +        top="2" +        layout="topleft" +        left_pad="12" +        image_disabled="ComboButton_UpOff" +        image_unselected="ComboButton_UpOff" +        image_selected="ComboButton_On" +        image_pressed="ComboButton_UpSelected" +        image_pressed_selected="ComboButton_Selected" +        height="23" +        chrome="true" +        name="show_nearby_chat" +        tool_tip="Shows/hides nearby chat log"> +      </button>      </panel>  </floater> | 
