diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2009-07-04 15:53:19 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2009-07-04 15:53:19 (GMT) |
commit | 5f2cd35c377989e07b241870f89fdf87d851465d (patch) | |
tree | af0831fb6bb0bd303f8295005cec6284d1444b01 /src/graph | |
parent | a60e81ac70b3d829f486ce7b6534005a9d025206 (diff) |
Improved the link lines management.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@90 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/graph')
-rw-r--r-- | src/graph/layout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graph/layout.c b/src/graph/layout.c index 93d6b28..725d76c 100644 --- a/src/graph/layout.c +++ b/src/graph/layout.c @@ -97,6 +97,8 @@ bool build_graph_view(GtkGraphView *view, GtkBinView **views, size_t count) links = create_links_from_graph_layout(layout, &links_count); gtk_graph_view_attach_links(view, links, links_count); + gtk_widget_queue_draw(GTK_WIDGET(view)); + delete_graph_layout(layout); /* TODO : free nodes */ |