diff --git a/Mesh/2D_Mesh_Triangle.cpp b/Mesh/2D_Mesh_Triangle.cpp
index f7606e2d2d01f35b85bdecaaf6a8bcdd591b6386..f71f0a209db507e1a5935786015ec1e0adb7dd93 100644
--- a/Mesh/2D_Mesh_Triangle.cpp
+++ b/Mesh/2D_Mesh_Triangle.cpp
@@ -1,4 +1,4 @@
-// $Id: 2D_Mesh_Triangle.cpp,v 1.6 2004-02-07 01:40:20 geuzaine Exp $
+// $Id: 2D_Mesh_Triangle.cpp,v 1.7 2004-05-17 21:28:02 geuzaine Exp $
 //
 // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
 //
@@ -183,7 +183,7 @@ int Mesh_Shewchuk(Surface * s)
   // triangulate the points with minimum angle > 20 deg, with no boundary breaking
 
   strcpy(opts, "pqzY");
-  if(CTX.verbosity < 3)
+  if(CTX.verbosity < 4)
     strcat(opts, "Q");
   triangulate(opts, &in, &mid, NULL);
 
@@ -230,7 +230,7 @@ int Mesh_Shewchuk(Surface * s)
 
   //strcpy(opts, "praqzBPY");
   strcpy(opts, CTX.mesh.triangle_options);
-  if(CTX.verbosity < 3)
+  if(CTX.verbosity < 4)
     strcat(opts, "Q");
   triangulate(opts, &mid, &out, NULL);
 
diff --git a/Plugin/Triangulate.cpp b/Plugin/Triangulate.cpp
index 4b2f36b5a9e3e6a4f340d6ac71240e146f24b366..54076d360fb170ea1d63b86053f450e1e66f3815 100644
--- a/Plugin/Triangulate.cpp
+++ b/Plugin/Triangulate.cpp
@@ -1,4 +1,4 @@
-// $Id: Triangulate.cpp,v 1.21 2004-05-16 20:04:43 geuzaine Exp $
+// $Id: Triangulate.cpp,v 1.22 2004-05-17 21:28:02 geuzaine Exp $
 //
 // Copyright (C) 1997-2004 C. Geuzaine, J.-F. Remacle
 //
@@ -170,7 +170,7 @@ void Triangulate(Post_View * vin, Post_View * vout)
   out.edgemarkerlist = NULL;
 
   char opts[128] = "z";
-  if(CTX.verbosity < 3)
+  if(CTX.verbosity < 4)
     strcat(opts, "Q");
   triangulate(opts, &in, &out, NULL);