fix for incorrect selection check in opencollada integration.

This commit is contained in:
Campbell Barton
2012-04-28 07:02:44 +00:00
parent f1d680d4b5
commit 3553bf6db0

View File

@@ -112,7 +112,7 @@ struct GeometryFunctor {
Object *ob = base->object;
if (ob->type == OB_MESH && ob->data &&
!(export_selected && !(ob->flag && SELECT)) &&
!(export_selected && !(ob->flag & SELECT)) &&
((sce->lay & ob->lay)!=0))
{
f(ob);