diff options
-rw-r--r-- | src/gtkext/graph/cluster.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gtkext/graph/cluster.c b/src/gtkext/graph/cluster.c index 5ead117..e0d67eb 100644 --- a/src/gtkext/graph/cluster.c +++ b/src/gtkext/graph/cluster.c @@ -897,6 +897,9 @@ static gint compute_loop_link_x_with_vspace_manager(const vspace_manager_t *mana { booking = manager->left[i]; + if (booking->external != external) + continue; + x = ++count * LINK_MARGIN; booking->pts[0].x = needed->x - x; @@ -912,6 +915,9 @@ static gint compute_loop_link_x_with_vspace_manager(const vspace_manager_t *mana { booking = manager->right[i]; + if (booking->external != external) + continue; + x = ++count * LINK_MARGIN; booking->pts[0].x = needed->x + needed->width + x; |