From 3fd0b9d8c9d074cca91943fa651be05f8cd9b2ad Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Tue, 3 Oct 2023 21:46:59 -0400 Subject: [PATCH] Fix multitask properties --- indra/newview/llpanelobjectinventory.cpp | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/indra/newview/llpanelobjectinventory.cpp b/indra/newview/llpanelobjectinventory.cpp index 554dd74ccfe..79193eb61d0 100644 --- a/indra/newview/llpanelobjectinventory.cpp +++ b/indra/newview/llpanelobjectinventory.cpp @@ -640,10 +640,7 @@ void LLTaskInvFVBridge::buildContextMenu(LLMenuGL& menu, U32 flags) // [/RLVa:KB] } items.push_back(std::string("Task Properties")); - if ((flags & FIRST_SELECTED_ITEM) == 0) - { - disabled_items.push_back(std::string("Task Properties")); - } + if(isItemRenameable()) { items.push_back(std::string("Task Rename")); @@ -960,10 +957,6 @@ void LLTaskSoundBridge::buildContextMenu(LLMenuGL& menu, U32 flags) } } items.push_back(std::string("Task Properties")); - if ((flags & FIRST_SELECTED_ITEM) == 0) - { - disabled_items.push_back(std::string("Task Properties")); - } if(isItemRenameable()) { items.push_back(std::string("Task Rename")); @@ -1321,10 +1314,6 @@ void LLTaskMeshBridge::buildContextMenu(LLMenuGL& menu, U32 flags) } items.push_back(std::string("Task Properties")); - if ((flags & FIRST_SELECTED_ITEM) == 0) - { - disabled_items.push_back(std::string("Task Properties")); - } if(isItemRenameable()) { items.push_back(std::string("Task Rename")); -- GitLab