summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorIgor Borovkov <iborovkov@productengine.com>2010-04-30 16:50:36 +0300
committerIgor Borovkov <iborovkov@productengine.com>2010-04-30 16:50:36 +0300
commit23bd34a78163c31bc2a661acd15db63ed248af53 (patch)
tree3628a8c476adeb327a367a6812b78caf4d6d348f /indra/newview
parent6918b292e1dea08998649c3ce0e2bfc95932a229 (diff)
additional fix for EXT-6732 Create specialized view of inventory for "clothing" accordion tab of outfit editor
"size_changes" == info["action"] is always TRUE no matter what info["action"] maps to, that should be rewritten to "size_changes" == info["action"].asString() No review. --HG-- branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llcofwearables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llcofwearables.h b/indra/newview/llcofwearables.h
index c256d2a05d..2d26bf781f 100644
--- a/indra/newview/llcofwearables.h
+++ b/indra/newview/llcofwearables.h
@@ -56,7 +56,7 @@ public:
LLView* parent = getParent();
if (!parent) return -1;
- if (!info.has("action") || "size_changes" != info["action"])
+ if (!(info.has("action") && "size_changes" == info["action"].asString()))
{
return parent->notifyParent(info);
}