fix ugly seek for process in draw_closure
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / processlist.c
index 924d8c52501b795eb673f579433b98304250ff9f..e56911e94d6e4d330ecb4929e705805b2befd3fd 100644 (file)
@@ -490,8 +490,15 @@ int processlist_add(  ProcessList *process_list,
    * overriden by the new state before anything is drawn.
    */
   hashed_process_data->x.over = 0;
+  hashed_process_data->x.over_used = FALSE;
+  hashed_process_data->x.over_marked = FALSE;
   hashed_process_data->x.middle = 0;
+  hashed_process_data->x.middle_used = FALSE;
+  hashed_process_data->x.middle_marked = FALSE;
   hashed_process_data->x.under = 0;
+  hashed_process_data->x.under_used = FALSE;
+  hashed_process_data->x.under_marked = FALSE;
+  hashed_process_data->next_good_time = ltt_time_zero;
   
   /* Add a new row to the model */
   gtk_list_store_append ( process_list->list_store,
This page took 0.022694 seconds and 4 git commands to generate.