diff --git a/Polyhedron/demo/Polyhedron/Plugins/PMP/Distance_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PMP/Distance_plugin.cpp index 0d8d18094ea..a9a2410bc74 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PMP/Distance_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PMP/Distance_plugin.cpp @@ -419,7 +419,7 @@ public: //creates the action QAction *actionComputeDistance= new QAction(QString("Compute Distance Between Polyhedra"), mw); //specifies the subMenu - actionComputeDistance->setProperty("submenuName", "Polygon Mesh Processing"); + actionComputeDistance->setProperty("subMenuName", "Polygon Mesh Processing"); //links the action if(actionComputeDistance) { connect(actionComputeDistance, SIGNAL(triggered()), @@ -432,7 +432,7 @@ public Q_SLOTS: { bool ok = false; nb_pts_per_face = QInputDialog::getInt(mw, tr("Sampling"), - tr("Number of points per face:"),400, 1,2147483647,1, &ok); + tr("Number of points per face:"),40, 1,2147483647,1, &ok); if (!ok) return;