From ab6fe0e8a114726d48efc0eb568f03cfeaa7aa2c Mon Sep 17 00:00:00 2001 From: nds Date: Fri, 22 Apr 2016 16:47:22 +0300 Subject: [PATCH] #1343 sketch - selection of several vertices: fillet operation --- src/PartSet/PartSet_Validators.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.39.2