diff options
| author | Igor Borovkov <iborovkov@productengine.com> | 2010-06-03 14:54:34 +0300 | 
|---|---|---|
| committer | Igor Borovkov <iborovkov@productengine.com> | 2010-06-03 14:54:34 +0300 | 
| commit | af7d4e17aad256d428294841db6d5a54cba8e3f1 (patch) | |
| tree | 2c22c611184fa2f62812b4a5c6b3b579b064b971 | |
| parent | 07ca580cfab9b587175743130c0abbeb3bf10637 (diff) | |
EXT-7392 FIXED panel edit outfit, switched location of checkboxes and texture pickers
- switched location of checkboxes and texture pickers, updated size of texture pickers
https://jira.secondlife.com/secure/attachment/39898/for+review.jpg
Reviewed by Neal Orman at https://codereview.productengine.com/secondlife/r/498/
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_edit_alpha.xml | 89 | 
1 files changed, 47 insertions, 42 deletions
| diff --git a/indra/newview/skins/default/xui/en/panel_edit_alpha.xml b/indra/newview/skins/default/xui/en/panel_edit_alpha.xml index cfcdc25f81..7bcd4962d2 100644 --- a/indra/newview/skins/default/xui/en/panel_edit_alpha.xml +++ b/indra/newview/skins/default/xui/en/panel_edit_alpha.xml @@ -21,126 +21,131 @@        name="avatar_alpha_color_panel"        top="0"        width="313" > +       <check_box +        control_name="LowerAlphaTextureInvisible" +        follows="left" +        height="16" +        layout="topleft" +        left="5" +        name="lower alpha texture invisible" +        top="10" +        width="16" />         <texture_picker          can_apply_immediately="true"          default_image_name="Default"          follows="left|top" -        height="100" +        height="115"          label="Lower Alpha"          layout="topleft" -        left="30" +        left_pad="5"          name="Lower Alpha"          tool_tip="Click to choose a picture"          top="10" -        width="94" > +        width="115" >           <texture_picker.commit_callback               function="TexturePicker.Commit" />         </texture_picker> +         <check_box -        control_name="LowerAlphaTextureInvisible" +        control_name="UpperAlphaTextureInvisible"          follows="left"          height="16"          layout="topleft" -        left_pad="6" -        name="lower alpha texture invisible" -        top_delta="4" +        left_pad="20" +        name="upper alpha texture invisible" +        top="10"          width="16" />         <texture_picker          can_apply_immediately="true"          default_image_name="Default"          follows="left|top" -        height="100" +        height="115"          label="Upper Alpha"          layout="topleft" -        left_pad="20" +        left_pad="5"          name="Upper Alpha"          tool_tip="Click to choose a picture"          top="10" -        width="94"> +        width="115">           <texture_picker.commit_callback               function="TexturePicker.Commit" />         </texture_picker> +         <check_box -        control_name="UpperAlphaTextureInvisible" +        control_name="HeadAlphaTextureInvisible"          follows="left"          height="16"          layout="topleft" -        left_pad="6" -        name="upper alpha texture invisible" -        top_delta="4" +        left="5" +        name="head alpha texture invisible" +        top_pad="15"          width="16" />         <texture_picker          can_apply_immediately="true"          default_image_name="Default"          follows="left|top" -        height="100" +        height="115"          label="Head Alpha"          layout="topleft" -        left="30" +        left_pad="5"          name="Head Alpha"          tool_tip="Click to choose a picture" -        top="120" -        width="94" > +        top_delta="0" +        width="115" >           <texture_picker.commit_callback               function="TexturePicker.Commit" />         </texture_picker> +         <check_box -        control_name="HeadAlphaTextureInvisible" +        control_name="Eye AlphaTextureInvisible"          follows="left"          height="16"          layout="topleft" -        left_pad="6" -        name="head alpha texture invisible" -        top_delta="4" +        left_pad="20" +        name="eye alpha texture invisible" +        top_delta="0"          width="16" />         <texture_picker          can_apply_immediately="true"          default_image_name="Default"          follows="left|top" -        height="100" +        height="115"          label="Eye Alpha"          layout="topleft" -        left_pad="20" +        left_pad="5"          name="Eye Alpha"          tool_tip="Click to choose a picture" -        top="120" -        width="94" > +        top_delta="0" +        width="115" >           <texture_picker.commit_callback               function="TexturePicker.Commit" />         </texture_picker> +         <check_box -        control_name="Eye AlphaTextureInvisible" +        control_name="HairAlphaTextureInvisible"          follows="left"          height="16"          layout="topleft" -        left_pad="6" -        name="eye alpha texture invisible" -        top_delta="4" +        left="5" +        name="hair alpha texture invisible" +        top_pad="15"          width="16" />         <texture_picker          can_apply_immediately="true"          default_image_name="Default"          follows="left|top" -        height="100" +        height="115"          label="Hair Alpha"          layout="topleft"          left="30"          name="Hair Alpha"          tool_tip="Click to choose a picture" -        top="230" -        width="94" > +        top_delta="0" +        width="115" >           <texture_picker.commit_callback               function="TexturePicker.Commit" />         </texture_picker> -       <check_box -        control_name="HairAlphaTextureInvisible" -        follows="left" -        height="16" -        layout="topleft" -        left_pad="6" -        name="hair alpha texture invisible" -        top_delta="4" -        width="16" /> +  	 </panel>  </panel> | 
