ui: Improvements and fixes in graph layouting
* put nodes with bidirectional aggregations on the left * layout aggregations either horizontal or vertical based on buckets * exceed bucket height if only one element and vertical split * fixed hiding nodes in sublayout showed empty spot
This commit is contained in:
@@ -1042,7 +1042,8 @@ QtGraphEdge* QtGraphView::createEdge(
|
||||
if (owner != nullptr && target != nullptr)
|
||||
{
|
||||
QtGraphEdge* qtEdge = new QtGraphEdge(
|
||||
owner, target, edge->data, edge->getWeight(), edge->active && !useBezier, edge->getDirection());
|
||||
owner, target, edge->data, edge->getWeight(), edge->active && !useBezier, edge->layoutHorizontal,
|
||||
edge->getDirection());
|
||||
|
||||
if (trailMode != Graph::TRAIL_NONE)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user