mirror of https://github.com/CGAL/cgal
Fix a bug with Follow_mouse.
This commit is contained in:
parent
dc6afccc91
commit
88da5513d1
|
|
@ -499,7 +499,7 @@ public slots:
|
|||
|
||||
Face_handle fh = mesh->locate(p);
|
||||
traits.set_point(p);
|
||||
if( (fh!=NULL) && (!mesh->is_infinite(fh)) )
|
||||
if( (fh!=NULL) && (!mesh->is_infinite(fh)) && fh->is_marked() )
|
||||
{
|
||||
const Point&
|
||||
a = fh->vertex(0)->point(),
|
||||
|
|
|
|||
Loading…
Reference in New Issue