diff options
Diffstat (limited to 'src/gtkext/graph')
-rw-r--r-- | src/gtkext/graph/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gtkext/graph/node.c b/src/gtkext/graph/node.c index f3e6352..e2af8f7 100644 --- a/src/gtkext/graph/node.c +++ b/src/gtkext/graph/node.c @@ -252,13 +252,13 @@ void g_graph_node_place(GGraphNode *node, GtkGraphView *view, gint x, gint y) x -= requisition.width / 2; y -= requisition.height / 2; - gtk_graph_view_put(view, node->view, x, y); - node->alloc.x = x; node->alloc.y = y; node->alloc.width = requisition.width; node->alloc.height = requisition.height; + gtk_graph_view_put(view, node->view, &node->alloc); + } |