diff options
| author | callum <none@none> | 2010-12-03 15:02:56 -0800 | 
|---|---|---|
| committer | callum <none@none> | 2010-12-03 15:02:56 -0800 | 
| commit | 6924998e85c5637c190c2c97bb94fa421cc6774e (patch) | |
| tree | 7cf31dce3e7276d803a8b8822f1687f67103c02a | |
| parent | 468b44e2831241665e3cc0dfcf358cc2e8d6b389 (diff) | |
SOCIAL-333 FIX Order of buttons on Web content floater is wrong
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_web_content.xml | 25 | 
1 files changed, 13 insertions, 12 deletions
| diff --git a/indra/newview/skins/default/xui/en/floater_web_content.xml b/indra/newview/skins/default/xui/en/floater_web_content.xml index 97a7a0e737..d57cfe9cab 100644 --- a/indra/newview/skins/default/xui/en/floater_web_content.xml +++ b/indra/newview/skins/default/xui/en/floater_web_content.xml @@ -11,6 +11,7 @@    save_rect="true"
    auto_tile="true"
    title="WEB CONTENT"
 +  initial_mime_type="text/html"
    width="820">
    <layout_stack
      bottom="440"
 @@ -50,40 +51,40 @@            function="WebContent.Back" />
        </button>
        <button
 -        image_overlay="Stop_Off"
 +        image_overlay="Arrow_Right_Off"
  		    image_disabled="PushButton_Disabled"
  		    image_disabled_selected="PushButton_Disabled"
  		    image_selected="PushButton_Selected"
  		    image_unselected="PushButton_Off"
 -        enabled="false"
          follows="left|top"
          height="22"
          layout="topleft"
          left="27"
 -        name="stop"
 +        name="forward"
          top_delta="0"
          width="22">
          <button.commit_callback
 -          function="WebContent.Stop" />
 +          function="WebContent.Forward" />
        </button>
        <button
 -        image_overlay="Refresh_Off"
 +        image_overlay="Stop_Off"
  		    image_disabled="PushButton_Disabled"
  		    image_disabled_selected="PushButton_Disabled"
  		    image_selected="PushButton_Selected"
  		    image_unselected="PushButton_Off"
 +        enabled="false"
          follows="left|top"
          height="22"
          layout="topleft"
 -        left="27"
 -        name="reload"
 +        left="51"
 +        name="stop"
          top_delta="0"
          width="22">
          <button.commit_callback
 -          function="WebContent.Reload" />
 -      </button>      
 +          function="WebContent.Stop" />
 +      </button>
        <button
 -        image_overlay="Arrow_Right_Off"
 +        image_overlay="Refresh_Off"
  		    image_disabled="PushButton_Disabled"
  		    image_disabled_selected="PushButton_Disabled"
  		    image_selected="PushButton_Selected"
 @@ -92,11 +93,11 @@          height="22"
          layout="topleft"
          left="51"
 -        name="forward"
 +        name="reload"
          top_delta="0"
          width="22">
          <button.commit_callback
 -          function="WebContent.Forward" />
 +          function="WebContent.Reload" />
        </button>
        <combo_box
          allow_text_entry="true"
 | 
