src/graph_list.c: Sort the instances of all graphs.
authorFlorian Forster <ff@octo.it>
Wed, 7 Jul 2010 14:16:29 +0000 (16:16 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Wed, 7 Jul 2010 14:16:29 +0000 (16:16 +0200)
src/graph_list.c

index f5cb2e9..e0f2b97 100644 (file)
@@ -467,6 +467,7 @@ int gl_update (void) /* {{{ */
 {
   time_t now;
   int status;
+  size_t i;
 
   /*
   printf ("Content-Type: text/plain\n\n");
@@ -492,6 +493,9 @@ int gl_update (void) /* {{{ */
 
   gl_last_update = now;
 
+  for (i = 0; i < gl_active_num; i++)
+    graph_sort_instances (gl_active[i]);
+
   return (status);
 } /* }}} int gl_update */