diff --git a/Geo/GModelIO_OCC.cpp b/Geo/GModelIO_OCC.cpp
index 0af2bacd8cc8563aead2d9bc9935b7da844794b8..fe8f3be13db0bb0342fcb87f26b595946401439a 100644
--- a/Geo/GModelIO_OCC.cpp
+++ b/Geo/GModelIO_OCC.cpp
@@ -987,7 +987,7 @@ int GModel::readOCCBREP(const std::string &fn)
   _occ_internals = new OCC_Internals;
   _occ_internals->loadBREP(fn.c_str());
   _occ_internals->buildGModel(this);
-  //snapVertices();
+  snapVertices();
   return 1;
 }
 
@@ -1035,7 +1035,7 @@ int GModel::importOCCShape(const void *shape)
   _occ_internals = new OCC_Internals;
   _occ_internals->loadShape((TopoDS_Shape*)shape);
   _occ_internals->buildGModel(this);
-  //snapVertices();
+  snapVertices();
   SetBoundingBox();
   return 1;
 }