diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-12-13 20:01:01 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-12-13 20:01:01 +0200 |
commit | 514e4f661bbf4355ead4e60288c0075cc945b597 (patch) | |
tree | d78b928db78180eff9dcb59a5ab94dc8fddfea5a /indra/newview/llinventorybridge.cpp | |
parent | bf2efcf43e5efaf91220a0c77f3db792636edeb1 (diff) |
SL-10236 The "Attach To", "Attach To HUD", and "Wear" options aren't greyed out
Diffstat (limited to 'indra/newview/llinventorybridge.cpp')
-rw-r--r-- | indra/newview/llinventorybridge.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp index 1987e15850..e7367d5ced 100644 --- a/indra/newview/llinventorybridge.cpp +++ b/indra/newview/llinventorybridge.cpp @@ -7344,7 +7344,10 @@ void LLFolderViewGroupedItemBridge::groupFilterContextMenu(folder_view_item_dequ { if (!LLAppearanceMgr::instance().canAddWearables(ids) && canWearSelected(ids)) { - disabled_items.push_back(std::string("Wearable Add")); + disabled_items.push_back(std::string("Wearable And Object Wear")); + disabled_items.push_back(std::string("Wearable Add")); + disabled_items.push_back(std::string("Attach To")); + disabled_items.push_back(std::string("Attach To HUD")); } } disable_context_entries_if_present(menu, disabled_items); |