From 01a82a3ef2acdccde5ca7421aef584d1127f3ce0 Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Fri, 6 Apr 2018 09:26:47 +0200 Subject: [PATCH] Fix selection tool accordingly --- Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp index 5f982baab6a..5d8e9bb5eaa 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polyhedron_selection_item.cpp @@ -2091,7 +2091,7 @@ bool Scene_polyhedron_selection_item_priv::canAddFaceAndVertex(fg_halfedge_descr if(iterator == hc) { found = true; - CGAL::Euler::add_vertex_and_face_to_border(hc,t, *item->polyhedron()); + CGAL::Euler::add_vertex_and_face_to_border(t,hc, *item->polyhedron()); break; } iterator = next(iterator, *item->polyhedron());