diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-11-30 17:22:02 +0200 |
---|---|---|
committer | akleshchev <117672381+akleshchev@users.noreply.github.com> | 2022-12-01 05:33:48 +0200 |
commit | b095194267389b0f5512fb14f18338bd256f3e81 (patch) | |
tree | ec3a245b23fa565ae7e97e2315e4303dd67ca02b | |
parent | 7c489e0480221b9c85a919f02f2a1d45b936f6e7 (diff) |
SL-18742 Upload materials option is missing from inventory's menu
-rw-r--r-- | indra/newview/skins/default/xui/en/menu_inventory_add.xml | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/indra/newview/skins/default/xui/en/menu_inventory_add.xml b/indra/newview/skins/default/xui/en/menu_inventory_add.xml index fa40c5df90..b04215872c 100644 --- a/indra/newview/skins/default/xui/en/menu_inventory_add.xml +++ b/indra/newview/skins/default/xui/en/menu_inventory_add.xml @@ -47,13 +47,23 @@ label="Model..." layout="topleft" name="Upload Model"> - <menu_item_call.on_click - function="File.UploadModel" - parameter="" /> - <menu_item_call.on_enable - function="File.EnableUploadModel" /> - <menu_item_call.on_visible - function="File.VisibleUploadModel"/> + <menu_item_call.on_click + function="File.UploadModel" + parameter="" /> + <menu_item_call.on_enable + function="File.EnableUploadModel" /> + <menu_item_call.on_visible + function="File.VisibleUploadModel"/> + </menu_item_call> + <menu_item_call + label="Material..." + layout="topleft" + name="Upload Material"> + <menu_item_call.on_click + function="File.UploadMaterial" + parameter="" /> + <menu_item_call.on_enable + function="File.EnableUploadMaterial" /> </menu_item_call> <menu_item_call label="Bulk..." |