summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRichard Linden <none@none>2012-03-23 18:31:09 -0700
committerRichard Linden <none@none>2012-03-23 18:31:09 -0700
commit6e4e971fd27826f90c1728c7fd17242083e230fc (patch)
tree7f4cff7f54e4dff99861e2f674fe16b0f1790f3f /indra
parentaa5bd09f1ce5406f0d1d7ac36d2fb7cb30b29fd2 (diff)
EXP-1925 WIP Inventory folders being pasted to are hidden during a paste operation
potential fix by not changing mostfiltereddescendant flag when dirtying folder as new contents arrive
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfolderviewitem.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/newview/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp
index dce0981a3e..d2b4866987 100644
--- a/indra/newview/llfolderviewitem.cpp
+++ b/indra/newview/llfolderviewitem.cpp
@@ -1165,8 +1165,8 @@ S32 LLFolderViewFolder::arrange( S32* width, S32* height, S32 filter_generation)
}
// evaluate mHasVisibleChildren
- mHasVisibleChildren = hasFilteredDescendants(filter_generation);
- if (mHasVisibleChildren)
+ mHasVisibleChildren = false;
+ if (hasFilteredDescendants(filter_generation))
{
// We have to verify that there's at least one child that's not filtered out
bool found = false;
@@ -1192,6 +1192,7 @@ S32 LLFolderViewFolder::arrange( S32* width, S32* height, S32 filter_generation)
break;
}
}
+
mHasVisibleChildren = found;
}
@@ -1346,7 +1347,7 @@ void LLFolderViewFolder::requestSort()
void LLFolderViewFolder::setCompletedFilterGeneration(S32 generation, BOOL recurse_up)
{
- mMostFilteredDescendantGeneration = llmin(mMostFilteredDescendantGeneration, generation);
+ //mMostFilteredDescendantGeneration = llmin(mMostFilteredDescendantGeneration, generation);
mCompletedFilterGeneration = generation;
// only aggregate up if we are a lower (older) value
if (recurse_up