diff options
author | andreykproductengine <akleshchev@productengine.com> | 2015-06-22 19:26:28 +0300 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2015-06-22 19:26:28 +0300 |
commit | 7cd62f4908218e6cfd176fc8b45a5f1bc4279219 (patch) | |
tree | 156000d6730450340655e4f837c310a22a232a6c /indra/llui/llfolderviewitem.h | |
parent | 3e0f31f406d4376fd9cd59b306fda5775ea5c4e6 (diff) |
MAINT-5274 Missing folder arrow
Diffstat (limited to 'indra/llui/llfolderviewitem.h')
-rwxr-xr-x | indra/llui/llfolderviewitem.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llui/llfolderviewitem.h b/indra/llui/llfolderviewitem.h index 5ad5731cad..f77d676f46 100755 --- a/indra/llui/llfolderviewitem.h +++ b/indra/llui/llfolderviewitem.h @@ -114,6 +114,7 @@ protected: F32 mControlLabelRotation; LLFolderView* mRoot; bool mHasVisibleChildren, + mIsFolderComplete, // indicates that some children were not loaded/added yet mIsCurSelection, mDragAndDropTarget, mIsMouseOverTitle, @@ -210,6 +211,9 @@ public: BOOL hasVisibleChildren() { return mHasVisibleChildren; } + // true if object can't have children + BOOL isFolderComplete() { return mIsFolderComplete; } + // Call through to the viewed object and return true if it can be // removed. Returns true if it's removed. //virtual BOOL removeRecursively(BOOL single_item); |