diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-09-06 02:56:11 +0300 |
---|---|---|
committer | akleshchev <117672381+akleshchev@users.noreply.github.com> | 2023-09-10 21:48:43 +0300 |
commit | f24f72d2f9db7490b169daea16f8ab8400ca12b4 (patch) | |
tree | fcbf0ade3df878618dc0f123497900e3ecaa72dd /indra/newview/skins | |
parent | 992d4ec36f8b37b6451cb0e76bfa29bc3bec365e (diff) |
SL-19826 Gallery multiselect support Part#3
wip
Diffstat (limited to 'indra/newview/skins')
-rw-r--r-- | indra/newview/skins/default/xui/en/menu_gallery_inventory.xml | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/indra/newview/skins/default/xui/en/menu_gallery_inventory.xml b/indra/newview/skins/default/xui/en/menu_gallery_inventory.xml index 46afa3821b..d82c453e5f 100644 --- a/indra/newview/skins/default/xui/en/menu_gallery_inventory.xml +++ b/indra/newview/skins/default/xui/en/menu_gallery_inventory.xml @@ -453,30 +453,38 @@ <menu_item_call.on_click function="Inventory.FileUploadLocation" parameter="texture" /> + <menu_item_call.on_visible + function="Inventory.CanSetUploadLocation" /> </menu_item_call> <menu_item_call label="Sound uploads" layout="topleft" name="Sound uploads"> - <menu_item_call.on_click - function="Inventory.FileUploadLocation" - parameter="sound" /> + <menu_item_call.on_click + function="Inventory.FileUploadLocation" + parameter="sound" /> + <menu_item_call.on_visible + function="Inventory.CanSetUploadLocation" /> </menu_item_call> <menu_item_call label="Animation uploads" layout="topleft" name="Animation uploads"> - <menu_item_call.on_click - function="Inventory.FileUploadLocation" - parameter="animation" /> + <menu_item_call.on_click + function="Inventory.FileUploadLocation" + parameter="animation" /> + <menu_item_call.on_visible + function="Inventory.CanSetUploadLocation" /> </menu_item_call> <menu_item_call label="Model uploads" layout="topleft" name="Model uploads"> - <menu_item_call.on_click - function="Inventory.FileUploadLocation" - parameter="model" /> + <menu_item_call.on_click + function="Inventory.FileUploadLocation" + parameter="model" /> + <menu_item_call.on_visible + function="Inventory.CanSetUploadLocation" /> </menu_item_call> </menu> <menu_item_separator |