summaryrefslogtreecommitdiffstats
path: root/src/group.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/group.c')
-rw-r--r--src/group.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/group.c b/src/group.c
index e867cef..3a37c80 100644
--- a/src/group.c
+++ b/src/group.c
@@ -94,8 +94,6 @@ ganv_group_update(GanvItem* item, int flags)
{
GanvGroup* group = GANV_GROUP(item);
- (*group_parent_class->update)(item, flags);
-
double min_x = 0.0;
double min_y = 0.0;
double max_x = 0.0;
@@ -115,6 +113,8 @@ ganv_group_update(GanvItem* item, int flags)
item->impl->y1 = min_y;
item->impl->x2 = max_x;
item->impl->y2 = max_y;
+
+ (*group_parent_class->update)(item, flags);
}
static void