From 7c1b60aeba3b08aacb3c5e1d66139db911259869 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Tue, 4 Jun 2024 21:32:42 +0200 Subject: [PATCH] Enable multi-properties floater for task inventory --- indra/newview/llpanelobjectinventory.cpp | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/indra/newview/llpanelobjectinventory.cpp b/indra/newview/llpanelobjectinventory.cpp index ac2459be80..459a33d111 100644 --- a/indra/newview/llpanelobjectinventory.cpp +++ b/indra/newview/llpanelobjectinventory.cpp @@ -627,13 +627,12 @@ void LLTaskInvFVBridge::buildContextMenu(LLMenuGL& menu, U32 flags) // [/RLVa:KB] } items.push_back(std::string("Task Properties")); - // Legacy object properties + // Improved object properties //if ((flags & FIRST_SELECTED_ITEM) == 0) - if (!gSavedSettings.getBOOL("FSUseLegacyObjectProperties") && (flags & FIRST_SELECTED_ITEM) == 0) + //{ + // disabled_items.push_back(std::string("Task Properties")); + //} // - { - disabled_items.push_back(std::string("Task Properties")); - } // [RLVa:KB] - Checked: 2010-09-28 (RLVa-1.2.1f) | Added: RLVa-1.2.1f items.push_back(std::string("Task Rename")); if ( (!isItemRenameable()) || ((flags & FIRST_SELECTED_ITEM) == 0) ) @@ -1007,13 +1006,12 @@ void LLTaskSoundBridge::buildContextMenu(LLMenuGL& menu, U32 flags) } } items.push_back(std::string("Task Properties")); - // Legacy object properties + // Improved object properties //if ((flags & FIRST_SELECTED_ITEM) == 0) - if (!gSavedSettings.getBOOL("FSUseLegacyObjectProperties") && (flags & FIRST_SELECTED_ITEM) == 0) + //{ + // disabled_items.push_back(std::string("Task Properties")); + //} // - { - disabled_items.push_back(std::string("Task Properties")); - } if(isItemRenameable()) { items.push_back(std::string("Task Rename"));