ui: Fixed undoing after single edge activation within aggregation showed missing edges

This commit is contained in:
Eberhard Graether
2019-05-28 11:46:01 +02:00
parent 150240a9af
commit e410548665
3 changed files with 29 additions and 9 deletions
+1 -1
View File
@@ -1071,7 +1071,7 @@ QtGraphEdge* QtGraphView::createEdge(
if (owner != nullptr && target != nullptr)
{
QtGraphEdge* qtEdge = new QtGraphEdge(
owner, target, edge->data, edge->getWeight(), edge->active && !useBezier, interactive, edge->layoutHorizontal,
owner, target, edge->data, edge->getWeight(), edge->active, interactive, edge->layoutHorizontal,
edge->getDirection());
if (trailMode != Graph::TRAIL_NONE)