diff --git a/src/Select2D/Select2D_SensitiveSegment.cxx b/src/Select2D/Select2D_SensitiveSegment.cxx index 8747d5f417..86eec5d8a2 100755 --- a/src/Select2D/Select2D_SensitiveSegment.cxx +++ b/src/Select2D/Select2D_SensitiveSegment.cxx @@ -112,7 +112,7 @@ Matches (const Standard_Real XMin, Bnd_Box2d BoundBox; BoundBox.Update(XMin-TheTol,YMin-TheTol,XMax+TheTol,YMax+TheTol); - if (BoundBox.IsOut(mystart)&&BoundBox.IsOut(myend)) return Standard_False; + if (BoundBox.IsOut(mystart)||BoundBox.IsOut(myend)) return Standard_False; return Standard_True; }