MAINT-5217 FIXED Allow dragging outfit folders to other folders inside 'My outfit'.
parent
cdbc220a97
commit
d86a6403ca
|
|
@ -2258,8 +2258,14 @@ BOOL LLFolderBridge::dragCategoryIntoFolder(LLInventoryCategory* inv_cat,
|
|||
}
|
||||
if (is_movable && move_is_into_outfit)
|
||||
{
|
||||
is_movable = FALSE;
|
||||
// tooltip?
|
||||
if((mUUID == my_outifts_id) || (getCategory() && getCategory()->getPreferredType() == LLFolderType::FT_NONE))
|
||||
{
|
||||
is_movable = ((inv_cat->getPreferredType() == LLFolderType::FT_NONE) || (inv_cat->getPreferredType() == LLFolderType::FT_OUTFIT));
|
||||
}
|
||||
else
|
||||
{
|
||||
is_movable = false;
|
||||
}
|
||||
}
|
||||
if(is_movable && move_is_into_current_outfit && is_link)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue