diff options
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llcofwearables.h | 2 |
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); } |