From 9f7c8282aa5ee8313741f74526af0a150c770793 Mon Sep 17 00:00:00 2001 From: "Gergely POLONKAI (W00d5t0ck)" Date: Tue, 17 Sep 2013 10:00:12 +0200 Subject: [PATCH] Now adding all planets to the chart The chart generating procedure will decide what to show and what not. Since GNOME itself has a requirement for a slightly fast machine, it is not very likely that it will cause speed issues. --- src/ag-chart.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ag-chart.c b/src/ag-chart.c index 46f73f4..280c779 100644 --- a/src/ag-chart.c +++ b/src/ag-chart.c @@ -1,3 +1,5 @@ +#include + #include "ag-chart.h" struct _AgChartPrivate { @@ -38,6 +40,8 @@ ag_chart_new_full(GsweTimestamp *timestamp, gdouble longitude, gdouble latitude, g_free(coords); + gswe_moment_add_all_planets(GSWE_MOMENT(chart)); + return chart; }