Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-05-24 14:16:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-05-24 14:17:05 +0300
commita6c60affffc99270e94a123092d8b9c0942cccaa (patch)
tree19125fb8d6ecab8166d7773de57b341fbbc842d4 /source/blender/alembic/intern/abc_exporter.cc
parent60a099fb0958c1c0dd16f2800da6cac551e35c2c (diff)
parentd252ac6b9528d60b1235e095888f91e202ac4399 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/alembic/intern/abc_exporter.cc')
-rw-r--r--source/blender/alembic/intern/abc_exporter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_exporter.cc b/source/blender/alembic/intern/abc_exporter.cc
index 2c2d0b598e9..d974509d0ae 100644
--- a/source/blender/alembic/intern/abc_exporter.cc
+++ b/source/blender/alembic/intern/abc_exporter.cc
@@ -585,7 +585,7 @@ void AbcExporter::createShapeWriter(Base *ob_base, Object *dupliObParent)
{
Mesh *me = static_cast<Mesh *>(ob->data);
- if (!me || me->totvert == 0) {
+ if (!me) {
return;
}