Enable multi-properties floater for task inventory
parent
2a73551f8b
commit
7c1b60aeba
|
|
@ -627,13 +627,12 @@ void LLTaskInvFVBridge::buildContextMenu(LLMenuGL& menu, U32 flags)
|
|||
// [/RLVa:KB]
|
||||
}
|
||||
items.push_back(std::string("Task Properties"));
|
||||
// <FS:Ansariel> Legacy object properties
|
||||
// <FS:Ansariel> 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"));
|
||||
//}
|
||||
// </FS:Ansariel>
|
||||
{
|
||||
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"));
|
||||
// <FS:Ansariel> Legacy object properties
|
||||
// <FS:Ansariel> 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"));
|
||||
//}
|
||||
// </FS:Ansariel>
|
||||
{
|
||||
disabled_items.push_back(std::string("Task Properties"));
|
||||
}
|
||||
if(isItemRenameable())
|
||||
{
|
||||
items.push_back(std::string("Task Rename"));
|
||||
|
|
|
|||
Loading…
Reference in New Issue