aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-02-10 19:49:22 -0500
committerSteven Rostedt <rostedt@goodmis.org>2010-02-10 19:49:22 -0500
commit7f6c3bd40c02cbbf25831ab64efae2f560875888 (patch)
tree1917be9f271f890f51c498bf6ae282d033e13a5c
parentd9a8e8cf6dea7f6ebb234104bf3a2f3ed6a1ae15 (diff)
trace-graph: Resize graph height when plot is added or removed
The graph height was only calculated when the graph was loaded. Now that you can add new plots, we need to recalculate the height anytime a plot is added or removed. Reported-by: Darren Hart <dvhltc@us.ibm.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--trace-graph.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/trace-graph.c b/trace-graph.c
index 2ad7c2f..623abcb 100644
--- a/trace-graph.c
+++ b/trace-graph.c
@@ -426,6 +426,7 @@ plot_task_clicked (gpointer data)
426 struct graph_info *ginfo = data; 426 struct graph_info *ginfo = data;
427 427
428 graph_plot_task(ginfo, ginfo->filter_task_selected); 428 graph_plot_task(ginfo, ginfo->filter_task_selected);
429 ginfo->draw_height = PLOT_SPACE(ginfo->plots);
429 redraw_graph(ginfo); 430 redraw_graph(ginfo);
430 update_label_window(ginfo); 431 update_label_window(ginfo);
431} 432}
@@ -440,6 +441,7 @@ remove_plot_clicked (gpointer data)
440 return; 441 return;
441 442
442 trace_graph_plot_remove(ginfo, plot); 443 trace_graph_plot_remove(ginfo, plot);
444 ginfo->draw_height = PLOT_SPACE(ginfo->plots);
443 redraw_graph(ginfo); 445 redraw_graph(ginfo);
444 update_label_window(ginfo); 446 update_label_window(ginfo);
445} 447}