diff options
author | Jacek Antonelli | 2009-01-18 15:21:34 -0600 |
---|---|---|
committer | Jacek Antonelli | 2009-01-18 15:21:34 -0600 |
commit | d21a17895b903032b3ea1a31b4298723a44b73a1 (patch) | |
tree | cf68cd89f2b19e01baf979864cea3b797d096a08 /linden/indra | |
parent | Cosmetic code cleanup in LLInventoryViewFinder. (diff) | |
download | meta-impy-d21a17895b903032b3ea1a31b4298723a44b73a1.zip meta-impy-d21a17895b903032b3ea1a31b4298723a44b73a1.tar.gz meta-impy-d21a17895b903032b3ea1a31b4298723a44b73a1.tar.bz2 meta-impy-d21a17895b903032b3ea1a31b4298723a44b73a1.tar.xz |
LLFolderViewEventListener has type NIT_FOLDER.
This fixes folders always showing when filtering.
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llpanelinventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llpanelinventory.cpp b/linden/indra/newview/llpanelinventory.cpp index e41ecdc..7277f05 100644 --- a/linden/indra/newview/llpanelinventory.cpp +++ b/linden/indra/newview/llpanelinventory.cpp | |||
@@ -146,7 +146,7 @@ public: | |||
146 | virtual BOOL isUpToDate() const { return TRUE; } | 146 | virtual BOOL isUpToDate() const { return TRUE; } |
147 | virtual BOOL hasChildren() const { return FALSE; } | 147 | virtual BOOL hasChildren() const { return FALSE; } |
148 | virtual LLInventoryType::EType getInventoryType() const { return LLInventoryType::IT_NONE; } | 148 | virtual LLInventoryType::EType getInventoryType() const { return LLInventoryType::IT_NONE; } |
149 | virtual LLInventoryType::NType getNInventoryType() const { return LLInventoryType::NIT_NONE; } | 149 | virtual LLInventoryType::NType getNInventoryType() const { return LLInventoryType::NIT_FOLDER; } |
150 | // LLDragAndDropBridge functionality | 150 | // LLDragAndDropBridge functionality |
151 | virtual BOOL startDrag(EDragAndDropType* type, LLUUID* id) const; | 151 | virtual BOOL startDrag(EDragAndDropType* type, LLUUID* id) const; |
152 | virtual BOOL dragOrDrop(MASK mask, BOOL drop, | 152 | virtual BOOL dragOrDrop(MASK mask, BOOL drop, |