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.
This commit is contained in:
Gergely Polonkai 2013-09-17 10:00:12 +02:00
parent 7b88879736
commit 9f7c8282aa
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#include <swe-glib.h>
#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;
}