summaryrefslogtreecommitdiff
path: root/indra/newview/llinventoryfunctions.cpp
diff options
context:
space:
mode:
authorandreylproductengine <andreylproductengine@lindenlab.com>2014-03-13 01:44:41 +0200
committerandreylproductengine <andreylproductengine@lindenlab.com>2014-03-13 01:44:41 +0200
commit4fdf1c34b43f73c576576a6487c16e99e2ed75fc (patch)
treeeade75f6e969217ec56e484b86af3ab2fa3d35db /indra/newview/llinventoryfunctions.cpp
parent9670f19cc3fa71d86c72362e7ac1f95dd0387809 (diff)
MAINT-3812 FIXED "Remove from outfit" is unavailable for folders containing only gestures
Diffstat (limited to 'indra/newview/llinventoryfunctions.cpp')
-rwxr-xr-xindra/newview/llinventoryfunctions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llinventoryfunctions.cpp b/indra/newview/llinventoryfunctions.cpp
index f1a4889f5a..aa50795eb5 100755
--- a/indra/newview/llinventoryfunctions.cpp
+++ b/indra/newview/llinventoryfunctions.cpp
@@ -877,7 +877,7 @@ bool LLFindWearablesEx::operator()(LLInventoryCategory* cat, LLInventoryItem* it
if (!vitem) return false;
// Skip non-wearables.
- if (!vitem->isWearableType() && vitem->getType() != LLAssetType::AT_OBJECT)
+ if (!vitem->isWearableType() && vitem->getType() != LLAssetType::AT_OBJECT && vitem->getType() != LLAssetType::AT_GESTURE)
{
return false;
}