diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index e46c8a6b..1abf1df0 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -9,6 +9,12 @@
| 7.2 (?/?/?) |
+IO
+
+- PLY Reader: Allowing the PLY reader to read custom face ( Thanks to morgan Leborgne for the patch)
+
+
+
|
@@ -16,7 +22,7 @@
IO
-- Fixed slow OBJ reader (Thanks to Etienne Danvoye for the patch)
+- OBJ Reader: Fixed slow OBJ reader (Thanks to Etienne Danvoye for the patch)
Documentation
diff --git a/src/OpenMesh/Core/IO/reader/PLYReader.cc b/src/OpenMesh/Core/IO/reader/PLYReader.cc
index 618f347d..87078882 100644
--- a/src/OpenMesh/Core/IO/reader/PLYReader.cc
+++ b/src/OpenMesh/Core/IO/reader/PLYReader.cc
@@ -1270,6 +1270,8 @@ bool _PLYReader_::can_u_read(std::istream& _is) const {
omerr() << "Custom face Properties defined, before 'vertex_indices' property was defined. They will be skipped" << std::endl;
elements_.back().properties_.clear();
}
+ } else {
+ options_ += Options::Custom;
}
}