summaryrefslogtreecommitdiffstats
path: root/src/edge.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/edge.c')
-rw-r--r--src/edge.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/edge.c b/src/edge.c
index 449f884..d2833e4 100644
--- a/src/edge.c
+++ b/src/edge.c
@@ -282,10 +282,6 @@ ganv_edge_update(GanvItem* item, int flags)
GanvEdge* edge = GANV_EDGE(item);
GanvEdgeImpl* impl = edge->impl;
- if (parent_class->update) {
- (*parent_class->update)(item, flags);
- }
-
// Request redraw of old location
ganv_edge_request_redraw(item, &impl->old_coords);
@@ -316,6 +312,8 @@ ganv_edge_update(GanvItem* item, int flags)
// Request redraw of new location
ganv_edge_request_redraw(item, &impl->coords);
+
+ parent_class->update(item, flags);
}
static void