diff options
Diffstat (limited to 'src/gui/GraphCanvas.cpp')
-rw-r--r-- | src/gui/GraphCanvas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/GraphCanvas.cpp b/src/gui/GraphCanvas.cpp index 5a0c365a..ecd03aff 100644 --- a/src/gui/GraphCanvas.cpp +++ b/src/gui/GraphCanvas.cpp @@ -527,8 +527,8 @@ destroy_arc(GanvEdge* arc, void* data) void GraphCanvas::destroy_selection() { - for_each_selected_node(destroy_node, &_app); for_each_selected_edge(destroy_arc, &_app); + for_each_selected_node(destroy_node, &_app); } static void |