summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorGilbert Gonzales <gilbert@lindenlab.com>2012-07-30 11:35:01 -0700
committerGilbert Gonzales <gilbert@lindenlab.com>2012-07-30 11:35:01 -0700
commit9fa3407c9c18e0e9592bd659a515ec0b77ba13bd (patch)
tree05d1673ff1e7f19da8e71b4ed399cdb72cac2f4e /indra
parent209fd15176647a4b8defbb6e66daea6eb12d4b42 (diff)
CHUI-213: When a new folder is added to inventory, its parent is assigned before calling dirtyFilter(). This allows dirtyFilter() to propogate the dirty flag up.
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/llfolderviewitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp
index b9b6ea7444..2f17fa7c35 100644
--- a/indra/llui/llfolderviewitem.cpp
+++ b/indra/llui/llfolderviewitem.cpp
@@ -1552,8 +1552,8 @@ BOOL LLFolderViewFolder::addFolder(LLFolderViewFolder* folder)
requestSort();
getViewModelItem()->addChild(folder->getViewModelItem());
-
- folder->getViewModelItem()->dirtyFilter();
+ //After addChild since addChild assigns parent to bubble up to when calling dirtyFilter
+ folder->getViewModelItem()->dirtyFilter();
return TRUE;
}