diff options
author | Andrew Polunin <apolunin@productengine.com> | 2010-06-25 15:10:43 +0300 |
---|---|---|
committer | Andrew Polunin <apolunin@productengine.com> | 2010-06-25 15:10:43 +0300 |
commit | 66ce337a321ce274520e3c18a1c0af3ad5bd2475 (patch) | |
tree | 619a0bef454c61c6042eca47b418d75095b8b693 /indra/newview/skins/default/xui/en/menu_cof_clothing.xml | |
parent | 435c73997b23148482f22488f2ca418b00ef1588 (diff) |
EXT-7914 FIXED (Update context menu for worn clothing in the Edit Outfit panel)
- Removed the following menu items: Move Up a Layer, Move Down a Layer.
- Added 'Replace' menu item.
- Implemented method replaceWearable() - handler for the 'Replace' menu item.
Reviewed by Mike Antipov at https://codereview.productengine.com/secondlife/r/642/
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview/skins/default/xui/en/menu_cof_clothing.xml')
-rw-r--r-- | indra/newview/skins/default/xui/en/menu_cof_clothing.xml | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/indra/newview/skins/default/xui/en/menu_cof_clothing.xml b/indra/newview/skins/default/xui/en/menu_cof_clothing.xml index 12ee9b045b..206d49e8c7 100644 --- a/indra/newview/skins/default/xui/en/menu_cof_clothing.xml +++ b/indra/newview/skins/default/xui/en/menu_cof_clothing.xml @@ -13,34 +13,24 @@ parameter="take_off" /> </menu_item_call> <menu_item_call - label="Move Up a Layer" - layout="topleft" - name="move_up"> - <on_click - function="Clothing.MoveUp" /> - <on_enable - function="Clothing.OnEnable" - parameter="move_up" /> - </menu_item_call> - <menu_item_call - label="Move Down a Layer" + label="Edit" layout="topleft" - name="move_down"> + name="edit"> <on_click - function="Clothing.MoveDown" /> + function="Clothing.Edit" /> <on_enable function="Clothing.OnEnable" - parameter="move_down" /> + parameter="edit" /> </menu_item_call> <menu_item_call - label="Edit" + label="Replace" layout="topleft" - name="edit"> + name="replace"> <on_click - function="Clothing.Edit" /> + function="Clothing.Replace" /> <on_enable function="Clothing.OnEnable" - parameter="edit" /> + parameter="replace" /> </menu_item_call> <menu_item_call label="Create New" |