From: nds Date: Fri, 22 Apr 2016 13:47:22 +0000 (+0300) Subject: #1343 sketch - selection of several vertices: fillet operation X-Git-Tag: V_2.3.0~126 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ab6fe0e8a114726d48efc0eb568f03cfeaa7aa2c;p=modules%2Fshaper.git #1343 sketch - selection of several vertices: fillet operation --- diff --git a/src/PartSet/PartSet_Validators.cpp b/src/PartSet/PartSet_Validators.cpp index 38ef8be3a..805d6a621 100755 --- a/src/PartSet/PartSet_Validators.cpp +++ b/src/PartSet/PartSet_Validators.cpp @@ -216,7 +216,7 @@ bool PartSet_FilletSelection::isValid(const ModuleBase_ISelection* theSelection, return isEmptySelectionValid(theOperation); } else { int aCount = shapesNbPoints(theSelection); - return aCount == 1; + return aCount > 1; } }